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/incremental_kernel_generator_impl.dart

Issue 2874723002: Add a way to use shared CanonicalName root to deserialize Program. (Closed)
Patch Set: Always compute canonical names. Use shared name root. 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
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 c19ed2adb848f614a596db84367d2c7ace247170..a1feddfb549f6b3264cca4313d0cdc0e28dbb4ef 100644
--- a/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
+++ b/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
@@ -105,7 +105,7 @@ class IncrementalKernelGeneratorImpl implements IncrementalKernelGenerator {
Future<DillTarget> _getSdkDillTarget() async {
if (_sdkDillTarget == null) {
_sdkDillTarget =
- new DillTarget(new Ticker(isVerbose: false), _uriTranslator);
+ new DillTarget(null, new Ticker(isVerbose: false), _uriTranslator);
// TODO(scheglov) Read the SDK kernel.
// _sdkDillTarget.read(options.sdkSummary);
// await _sdkDillTarget.writeOutline(null);

Powered by Google App Engine
This is Rietveld 408576698