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

Unified Diff: pkg/front_end/test/fasta/bootstrap_test.dart

Issue 2722223006: Move all main methods to tool/. (Closed)
Patch Set: Update tools/patch_sdk.dart. Created 3 years, 10 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/bootstrap_test.dart
diff --git a/pkg/front_end/test/fasta/bootstrap_test.dart b/pkg/front_end/test/fasta/bootstrap_test.dart
index 39fa7f9a694d7334b21f40c5de75421c89d0e4f9..265c6160ad4931dc9e58b7e876c84853118c886a 100644
--- a/pkg/front_end/test/fasta/bootstrap_test.dart
+++ b/pkg/front_end/test/fasta/bootstrap_test.dart
@@ -23,10 +23,8 @@ import 'package:kernel/text/ast_to_text.dart' show programToString;
Future main() async {
asyncStart();
- Uri sourceCompiler = await Isolate.resolvePackageUri(
- Uri.parse("package:front_end/src/fasta/bin/compile.dart"));
- Uri outline = await Isolate.resolvePackageUri(
- Uri.parse("package:front_end/src/fasta/bin/outline.dart"));
+ Uri sourceCompiler = Uri.base.resolve("pkg/front_end/tool/fasta/compile.dart");
+ Uri outline = Uri.base.resolve("pkg/front_end/tool/fasta/outline.dart");
Uri packages = await Isolate.packageConfig;
Directory tmp = await Directory.systemTemp.createTemp("fasta_bootstrap");
Uri compiledOnceOutput = tmp.uri.resolve("fasta1.dill");
« no previous file with comments | « pkg/front_end/lib/src/fasta/testing/scanner_chain.dart ('k') | pkg/front_end/test/fasta/parser/parser_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698