c82716b216
TEST=many language, co19, and other tests Bug: https://github.com/dart-lang/sdk/issues/61629 Change-Id: I24d761cc2dc3fa2707a2486a39bfde1b8e847b1e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/480384 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Reviewed-by: Alexander Markov <alexmarkov@google.com> Reviewed-by: Nate Bosch <nbosch@google.com> Reviewed-by: Morgan :) <davidmorgan@google.com> Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Bob Nystrom <rnystrom@google.com>
25 lines
1.0 KiB
Dart
25 lines
1.0 KiB
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.
|
|
|
|
import 'package:analyzer/dart/analysis/features.dart';
|
|
|
|
/// A list of the experiments that are to be enabled for tests.
|
|
///
|
|
/// The list will be empty if there are no experiments that should be enabled.
|
|
///
|
|
/// Experiments should be added to this list when work on a new experiment
|
|
/// begins. Experiments should be removed from this list when they are marked
|
|
/// as being enabled by default.
|
|
///
|
|
/// The flags in the list are kept in alphabetic order for ease of determining
|
|
/// whether a given flag is already included.
|
|
List<String> experimentsForTests = List.unmodifiable([
|
|
Feature.augmentations.enableString,
|
|
Feature.enhanced_parts.enableString,
|
|
Feature.macros.enableString,
|
|
Feature.primary_constructors.enableString,
|
|
Feature.static_extensions.enableString,
|
|
Feature.variance.enableString,
|
|
]);
|