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

Unified Diff: pkg/front_end/lib/src/fasta/compile_platform.dart

Issue 2723113002: Consolidate analyzer dependencies. (Closed)
Patch Set: Remove new dependency on AsyncMarker. 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
« no previous file with comments | « pkg/front_end/lib/src/fasta/bin/run.dart ('k') | pkg/front_end/lib/src/fasta/compile_platform_dartk.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/lib/src/fasta/compile_platform.dart
diff --git a/pkg/front_end/lib/src/fasta/compile_platform.dart b/pkg/front_end/lib/src/fasta/compile_platform.dart
index 6774aede7ed5b82a4e3105284e9e84e1f38d2abb..c8f2a193ef532efe02dd827d51d3a87b5088c7af 100644
--- a/pkg/front_end/lib/src/fasta/compile_platform.dart
+++ b/pkg/front_end/lib/src/fasta/compile_platform.dart
@@ -24,8 +24,6 @@ import 'dill/dill_target.dart' show DillTarget;
import 'translate_uri.dart' show TranslateUri;
-import 'ast_kind.dart' show AstKind;
-
Future main(List<String> arguments) async {
Ticker ticker = new Ticker();
try {
@@ -60,7 +58,7 @@ Future compilePlatform(CompilerContext c, Ticker ticker) async {
await kernelTarget.writeOutline(output);
if (exitCode != 0) return null;
- await kernelTarget.writeProgram(output, AstKind.Kernel);
+ await kernelTarget.writeProgram(output);
if (c.options.dumpIr) {
kernelTarget.dumpIr();
}
« no previous file with comments | « pkg/front_end/lib/src/fasta/bin/run.dart ('k') | pkg/front_end/lib/src/fasta/compile_platform_dartk.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698