blob: 94873ddad9f52df89a6a6500f04a88c32aa63091 [file] [log] [blame] [edit]
// Copyright (c) 2023, 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:test_reflective_loader/test_reflective_loader.dart';
import 'ast_to_ir_test.dart' as ast_to_ir;
import 'scope_analyzer_test.dart' as scope_analyzer;
import 'validator_test.dart' as validator;
main() {
defineReflectiveSuite(() {
ast_to_ir.main();
scope_analyzer.main();
validator.main();
}, name: 'ir');
}