2f706c4290
Work towards https://github.com/dart-lang/sdk/issues/55660 Change-Id: I9c5aa920e9f96f99ea00d6993b5f4dafd415f831 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/426986 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Commit-Queue: Samuel Rawlins <srawlins@google.com>
24 lines
969 B
Dart
24 lines
969 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.
|
|
|
|
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 = [
|
|
Feature.augmentations.enableString,
|
|
Feature.dot_shorthands.enableString,
|
|
Feature.enhanced_parts.enableString,
|
|
Feature.getter_setter_error.enableString,
|
|
Feature.macros.enableString,
|
|
];
|