68d05068aa
* Uri.isSamePackageAs(Uri) and Uri.isImplementation are each used a few times. Not as much as I would expect, but this still simplifies some code. Change-Id: Ie9020916c793852a0df9d04154420948d942d951 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/413801 Commit-Queue: Samuel Rawlins <srawlins@google.com> Reviewed-by: Paul Berry <paulberry@google.com>
34 lines
1.1 KiB
Dart
34 lines
1.1 KiB
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 'dart/test_all.dart' as dart;
|
|
import 'error/test_all.dart' as error;
|
|
import 'file_system/test_all.dart' as file_system;
|
|
import 'generated/test_all.dart' as generated;
|
|
import 'instrumentation/test_all.dart' as instrumentation;
|
|
import 'source/test_all.dart' as source;
|
|
import 'src/test_all.dart' as src;
|
|
import 'utilities/test_all.dart' as utilities;
|
|
import 'verify_diagnostics_test.dart' as verify_diagnostics;
|
|
import 'verify_docs_test.dart' as verify_docs;
|
|
import 'verify_tests_test.dart' as verify_tests;
|
|
|
|
main() {
|
|
defineReflectiveSuite(() {
|
|
dart.main();
|
|
error.main();
|
|
file_system.main();
|
|
generated.main();
|
|
instrumentation.main();
|
|
source.main();
|
|
src.main();
|
|
utilities.main();
|
|
verify_diagnostics.main();
|
|
verify_docs.main();
|
|
verify_tests.main();
|
|
}, name: 'analyzer');
|
|
}
|