5f0de26d48
Change-Id: If099be4f71ba551df0dc3d69815ae6a9f55d1eba Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/97781 Commit-Queue: Brian Wilkerson <brianwilkerson@google.com> Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
18 lines
527 B
Dart
18 lines
527 B
Dart
// Copyright (c) 2014, 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 'analysis/test_all.dart' as analysis;
|
|
import 'ast/test_all.dart' as ast;
|
|
import 'element/test_all.dart' as element;
|
|
|
|
main() {
|
|
defineReflectiveSuite(() {
|
|
analysis.main();
|
|
ast.main();
|
|
element.main();
|
|
}, name: 'dart');
|
|
}
|