Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Unified Diff: pkg/analyzer/test/context/test_all.dart

Issue 1816923002: Move constant implementation out of generated (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer/test/context/test_all.dart
diff --git a/pkg/analyzer/test/dart/test_all.dart b/pkg/analyzer/test/context/test_all.dart
similarity index 67%
copy from pkg/analyzer/test/dart/test_all.dart
copy to pkg/analyzer/test/context/test_all.dart
index df7ff550d71d877ed0326fc30ca2df1e8f77cbf1..b5387ba6b523f5a201e9fbd564fb549e0a059e2f 100644
--- a/pkg/analyzer/test/dart/test_all.dart
+++ b/pkg/analyzer/test/context/test_all.dart
@@ -2,19 +2,17 @@
// 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.
-library analyzer.test.generated.test_all;
+library analyzer.test.context.test_all;
import 'package:unittest/unittest.dart';
import '../utils.dart';
-import 'ast/test_all.dart' as ast;
-import 'element/test_all.dart' as element;
+import 'declared_variables_test.dart' as declared_variables;
/// Utility for manually running all tests.
main() {
initializeTestEnvironment();
- group('dart tests', () {
- ast.main();
- element.main();
+ group('context tests', () {
+ declared_variables.main();
});
}
« no previous file with comments | « pkg/analyzer/test/context/declared_variables_test.dart ('k') | pkg/analyzer/test/generated/constant_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698