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

Unified Diff: pkg/compiler/lib/src/compiler.dart

Issue 1750393002: Add --use-new-source-info option (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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/compiler/lib/src/commandline_options.dart ('k') | pkg/compiler/lib/src/io/source_information.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/compiler.dart
diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
index 3df2ba45fd807844146bab40c26730f30492ffe5..79ff968a7c1d4ee9ae130a7f73cbc0891db84664 100644
--- a/pkg/compiler/lib/src/compiler.dart
+++ b/pkg/compiler/lib/src/compiler.dart
@@ -455,6 +455,7 @@ abstract class Compiler {
this.dumpInfo: false,
bool useStartupEmitter: false,
bool enableConditionalDirectives: false,
+ bool useNewSourceInfo: false,
this.useContentSecurityPolicy: false,
bool hasIncrementalSupport: false,
this.enableExperimentalMirrors: false,
@@ -502,7 +503,8 @@ abstract class Compiler {
js_backend.JavaScriptBackend jsBackend =
new js_backend.JavaScriptBackend(
this, generateSourceMap: generateSourceMap,
- useStartupEmitter: useStartupEmitter);
+ useStartupEmitter: useStartupEmitter,
+ useNewSourceInfo: useNewSourceInfo);
backend = jsBackend;
} else {
backend = new dart_backend.DartBackend(this, strips,
« no previous file with comments | « pkg/compiler/lib/src/commandline_options.dart ('k') | pkg/compiler/lib/src/io/source_information.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698