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

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

Issue 2893563003: Rename buildOutline() and separate 'build' and 'writeProgram()'. (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 55f8cadacc0c6f94a9d10ac421bdec55fac92bb9..3f99548649e58bacd4b220f4d5767c694b9cb55c 100644
--- a/pkg/front_end/lib/src/fasta/compile_platform.dart
+++ b/pkg/front_end/lib/src/fasta/compile_platform.dart
@@ -74,11 +74,12 @@ Future compilePlatformInternal(CompilerContext c, Ticker ticker, Uri patchedSdk,
uriTranslator, c.options.strongMode, c.uriToSource);
kernelTarget.read(Uri.parse("dart:core"));
- await dillTarget.computeOutline();
- await kernelTarget.computeOutline();
+ await dillTarget.buildOutlines();
+ await kernelTarget.buildOutlines();
await kernelTarget.writeOutline(outlineOutput);
if (exitCode != 0) return null;
+ await kernelTarget.buildProgram();
await kernelTarget.writeProgram(fullOutput,
dumpIr: c.options.dumpIr, verify: c.options.verify);
await kernelTarget.writeDepsFile(fullOutput, deps);
« 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