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

Unified Diff: pkg/front_end/lib/kernel_generator.dart

Issue 2897683002: Move code for instantiating Invocation to Target. (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
Index: pkg/front_end/lib/kernel_generator.dart
diff --git a/pkg/front_end/lib/kernel_generator.dart b/pkg/front_end/lib/kernel_generator.dart
index 6292ae300b8289681e46b96c4dc95afcde3f2ffd..8947a7f5d5cd1557ca86ff3df2f5997f5032c092 100644
--- a/pkg/front_end/lib/kernel_generator.dart
+++ b/pkg/front_end/lib/kernel_generator.dart
@@ -54,7 +54,7 @@ Future<Program> kernelForProgram(Uri source, CompilerOptions options) async {
PhysicalFileSystem.instance, null, options.packagesFileUri);
var dillTarget =
- new DillTarget(new Ticker(isVerbose: false), uriTranslator);
+ new DillTarget(new Ticker(isVerbose: false), uriTranslator, "vm");
var summary = options.sdkSummary;
if (summary != null) dillTarget.read(summary);

Powered by Google App Engine
This is Rietveld 408576698