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

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

Issue 2885923002: Rename Target.writeOutline() into computeOutline(), add separate KernelTarget.writeOutline(). (Closed)
Patch Set: Created 3 years, 7 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/kernel_generator.dart ('k') | pkg/front_end/lib/src/fasta/dill/dill_target.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 24e8cf2fa8e2cc5f3b2531c28e278ca9fcf3b904..55f8cadacc0c6f94a9d10ac421bdec55fac92bb9 100644
--- a/pkg/front_end/lib/src/fasta/compile_platform.dart
+++ b/pkg/front_end/lib/src/fasta/compile_platform.dart
@@ -74,7 +74,8 @@ Future compilePlatformInternal(CompilerContext c, Ticker ticker, Uri patchedSdk,
uriTranslator, c.options.strongMode, c.uriToSource);
kernelTarget.read(Uri.parse("dart:core"));
- await dillTarget.writeOutline(null);
+ await dillTarget.computeOutline();
+ await kernelTarget.computeOutline();
await kernelTarget.writeOutline(outlineOutput);
if (exitCode != 0) return null;
« no previous file with comments | « pkg/front_end/lib/kernel_generator.dart ('k') | pkg/front_end/lib/src/fasta/dill/dill_target.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698