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

Unified Diff: pkg/compiler/lib/src/kernel/fasta_support.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 | « no previous file | pkg/front_end/lib/kernel_generator.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/kernel/fasta_support.dart
diff --git a/pkg/compiler/lib/src/kernel/fasta_support.dart b/pkg/compiler/lib/src/kernel/fasta_support.dart
index 672b34562c7f9fdff7b57b85e2e88fb0b31d0b62..485fa799995994428d1593b16d4ea4e9a59f330c 100644
--- a/pkg/compiler/lib/src/kernel/fasta_support.dart
+++ b/pkg/compiler/lib/src/kernel/fasta_support.dart
@@ -45,11 +45,12 @@ Future compilePlatform(Uri patchedSdk, Uri fullOutput,
new KernelTargetForDart2js(dillTarget, uriTranslator, false);
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);
await kernelTarget.writeDepsFile(fullOutput, deps);
}
« no previous file with comments | « no previous file | pkg/front_end/lib/kernel_generator.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698