0060b0f665
TEST=existing Change-Id: I30bbadb74e81c7f4aaa444d1e2f6f5ffc2005d4a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/412881 Reviewed-by: Jens Johansen <jensj@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Alexander Thomas <athom@google.com> Reviewed-by: Alexander Markov <alexmarkov@google.com>
20 lines
914 B
Dart
20 lines
914 B
Dart
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
class EnvironmentKeys {
|
|
static const String addDebugBreaks = "addDebugBreaks";
|
|
static const String annotateLines = "annotateLines";
|
|
static const String compilationMode = " compilation mode ";
|
|
static const String fuzz = "fuzz";
|
|
static const String ignoreExpectations = "ignoreExpectations";
|
|
static const String platformBinaries = "platformBinaries";
|
|
static const String semiFuzz = "semiFuzz";
|
|
static const String skipTests = "skipTests";
|
|
static const String skipVm = "skipVm";
|
|
static const String trace = "trace";
|
|
static const String updateComments = "updateComments";
|
|
static const String updateExpectations = "updateExpectations";
|
|
static const String verify = "verify";
|
|
}
|