Files
sdk/pkg/compiler/tool/update_id_tests.dart
T
Mayank Patke 37345b9f7e [dart2js] Enable strict-inference and strict-raw-types in pkg/compiler.
Change-Id: I4712d32dc37a8cbfa0e1e5bd61659df651c77471
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/354140
Reviewed-by: Nate Biggs <natebiggs@google.com>
Commit-Queue: Mayank Patke <fishythefish@google.com>
2024-02-26 22:41:58 +00:00

34 lines
1.5 KiB
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;
const List<String> idTests = <String>[
'pkg/compiler/test/model/cfe_constant_test.dart',
'pkg/compiler/test/annotations/annotations_test.dart',
'pkg/compiler/test/closure/closure_test.dart',
'pkg/compiler/test/codegen/model_test.dart',
'pkg/compiler/test/deferred_loading/deferred_loading_test.dart',
'pkg/compiler/test/field_analysis/jfield_analysis_test.dart',
'pkg/compiler/test/field_analysis/kfield_analysis_test.dart',
'pkg/compiler/test/impact/impact_test.dart',
'pkg/compiler/test/inference/callers_test.dart',
'pkg/compiler/test/inference/inference_test_helper.dart',
'pkg/compiler/test/inference/inference_data_test.dart',
'pkg/compiler/test/inference/side_effects_test.dart',
'pkg/compiler/test/inlining/inlining_test.dart',
'pkg/compiler/test/jumps/jump_test.dart',
'pkg/compiler/test/member_usage/member_usage_test.dart',
'pkg/compiler/test/optimization/optimization_test.dart',
'pkg/compiler/test/rti/rti_need_test_helper.dart',
'pkg/compiler/test/rti/rti_emission_test_helper.dart',
'pkg/compiler/test/static_type/static_type_test.dart',
'pkg/compiler/test/static_type/type_promotion_test.dart',
'pkg/compiler/test/equivalence/id_testing_test.dart',
];
Future<void> main() async {
await id.updateAllTests(idTests);
}