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

Unified Diff: pkg/front_end/lib/src/incremental_kernel_generator_impl.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/src/fasta/target.dart ('k') | pkg/front_end/test/fasta/testing/suite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
diff --git a/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart b/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
index 1992ba905add5bd7d127e61850f7c1805f15f95a..a0b94dbbeebc951f2469304ab7b21ab32ca9891d 100644
--- a/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
+++ b/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
@@ -185,7 +185,7 @@ class IncrementalKernelGeneratorImpl implements IncrementalKernelGenerator {
}
// Ask DILL to fill outlines using loaded libraries.
- await dillTarget.writeOutline(null);
+ await dillTarget.computeOutline();
// Create KernelTarget and configure it for compiling the cycle URIs.
KernelTarget kernelTarget = new KernelTarget(_fsState.fileSystemView,
@@ -197,7 +197,7 @@ class IncrementalKernelGeneratorImpl implements IncrementalKernelGenerator {
// Compile the cycle libraries into a new full program.
Program program = await _logger.runAsync(
'Compile ${cycle.libraries.length} cycle libraries', () async {
- await kernelTarget.writeOutline(null, nameRoot: nameRoot);
+ await kernelTarget.computeOutline(nameRoot: nameRoot);
return await kernelTarget.writeProgram(null);
});
« no previous file with comments | « pkg/front_end/lib/src/fasta/target.dart ('k') | pkg/front_end/test/fasta/testing/suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698