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

Unified Diff: pkg/front_end/test/fasta/testing/suite.dart

Issue 2828583003: remove dependencies to analyzer from lib/src/fasta (Closed)
Patch Set: add copyright Created 3 years, 8 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/front_end/test/fasta/testing/suite.dart
diff --git a/pkg/front_end/lib/src/fasta/testing/suite.dart b/pkg/front_end/test/fasta/testing/suite.dart
similarity index 90%
rename from pkg/front_end/lib/src/fasta/testing/suite.dart
rename to pkg/front_end/test/fasta/testing/suite.dart
index d8137f9ae38877ff5d84ff568fce6a5ec4367b30..a147290d705652e636782a920389262940505b61 100644
--- a/pkg/front_end/lib/src/fasta/testing/suite.dart
+++ b/pkg/front_end/test/fasta/testing/suite.dart
@@ -22,25 +22,28 @@ import 'package:kernel/target/targets.dart' show Target, TargetFlags, getTarget;
import 'package:testing/testing.dart'
show Chain, ExpectationSet, Result, Step, TestDescription;
-import '../errors.dart' show InputError;
+import 'package:front_end/src/fasta/errors.dart' show InputError;
-import 'kernel_chain.dart'
- show MatchExpectation, Print, Run, Verify, TestContext, WriteDill;
+import 'package:front_end/src/fasta/testing/kernel_chain.dart'
+ show MatchExpectation, Print, Verify, WriteDill;
-import '../ticker.dart' show Ticker;
+import 'package:front_end/src/fasta/ticker.dart' show Ticker;
-import '../translate_uri.dart' show TranslateUri;
+import 'package:front_end/src/fasta/translate_uri.dart' show TranslateUri;
-import '../analyzer/analyzer_target.dart' show AnalyzerTarget;
+import 'package:analyzer/src/fasta/analyzer_target.dart' show AnalyzerTarget;
-import '../kernel/kernel_target.dart' show KernelTarget;
+import 'package:front_end/src/fasta/kernel/kernel_target.dart'
+ show KernelTarget;
-import '../dill/dill_target.dart' show DillTarget;
-
-export 'kernel_chain.dart' show STRONG_MODE, TestContext;
+import 'package:front_end/src/fasta/dill/dill_target.dart' show DillTarget;
export 'package:testing/testing.dart' show Chain, runMe;
+import 'kernel_chain.dart' show Run, TestContext;
+
+export 'kernel_chain.dart' show STRONG_MODE, TestContext;
+
const String ENABLE_FULL_COMPILE = " full compile ";
const String AST_KIND_INDEX = " AST kind index ";

Powered by Google App Engine
This is Rietveld 408576698