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

Unified Diff: pkg/analyzer/test/src/dart/constant/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/src/dart/constant/test_all.dart
diff --git a/pkg/analyzer/test/src/dart/ast/test_all.dart b/pkg/analyzer/test/src/dart/constant/test_all.dart
similarity index 68%
copy from pkg/analyzer/test/src/dart/ast/test_all.dart
copy to pkg/analyzer/test/src/dart/constant/test_all.dart
index f0648c442345fdb07da8a7d49256c6f89f718881..a6eb5b6786347aba3599bfdbef80379243835835 100644
--- a/pkg/analyzer/test/src/dart/ast/test_all.dart
+++ b/pkg/analyzer/test/src/dart/constant/test_all.dart
@@ -2,17 +2,21 @@
// 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.src.dart.ast.test_all;
+library analyzer.test.src.dart.constant.test_all;
import 'package:unittest/unittest.dart';
import '../../../utils.dart';
+import 'evaluation_test.dart' as evaluation;
import 'utilities_test.dart' as utilities;
+import 'value_test.dart' as value;
/// Utility for manually running all tests.
main() {
initializeTestEnvironment();
- group('ast tests', () {
+ group('constant tests', () {
+ evaluation.main();
utilities.main();
+ value.main();
});
}
« no previous file with comments | « pkg/analyzer/test/src/dart/constant/evaluation_test.dart ('k') | pkg/analyzer/test/src/dart/constant/utilities_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698