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

Unified Diff: pkg/front_end/lib/src/fasta/compile_platform.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/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 878970adaf0e48c5d7195b0e55b7a2ff45c1cebd..bcc91d6f5ee78dabbd8bb6ae8b85b2280c5994ed 100644
--- a/pkg/front_end/lib/src/fasta/compile_platform.dart
+++ b/pkg/front_end/lib/src/fasta/compile_platform.dart
@@ -65,7 +65,7 @@ Future compilePlatformInternal(
await TranslateUri.parse(c.fileSystem, patchedSdk, c.options.packages);
ticker.logMs("Read packages file");
- DillTarget dillTarget = new DillTarget(ticker, uriTranslator);
+ DillTarget dillTarget = new DillTarget(null, ticker, uriTranslator);
KernelTarget kernelTarget = new KernelTarget(c.fileSystem, dillTarget,
uriTranslator, c.options.strongMode, c.uriToSource);

Powered by Google App Engine
This is Rietveld 408576698