f1aa891d6a
Change-Id: I6f8ce377923756a0ac31a377c75632216bcec0c5 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/365867 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Commit-Queue: Samuel Rawlins <srawlins@google.com> Reviewed-by: Phil Quitslund <pquitslund@google.com>
22 lines
908 B
Dart
22 lines
908 B
Dart
// Copyright (c) 2020, 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:_fe_analyzer_shared/src/testing/id_testing.dart' as id;
|
|
|
|
void main() async {
|
|
await id.updateAllTests(idTests);
|
|
}
|
|
|
|
const List<String> idTests = <String>[
|
|
'pkg/analyzer/test/id_tests/assigned_variables_test.dart',
|
|
'pkg/analyzer/test/id_tests/constant_test.dart',
|
|
'pkg/analyzer/test/id_tests/definite_assignment_test.dart',
|
|
'pkg/analyzer/test/id_tests/definite_unassignment_test.dart',
|
|
'pkg/analyzer/test/id_tests/inheritance_test.dart',
|
|
'pkg/analyzer/test/id_tests/nullability_test.dart',
|
|
'pkg/analyzer/test/id_tests/reachability_test.dart',
|
|
'pkg/analyzer/test/id_tests/type_promotion_test.dart',
|
|
'pkg/analyzer/test/id_tests/why_not_promoted_test.dart',
|
|
];
|