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

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

Issue 1864433004: Repeats and fixes the changes landed & reverted as CL 1789553003. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updates to external dependents Created 4 years, 8 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/parser/parser.dart ('k') | pkg/compiler/lib/src/parser/partial_elements.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/parser/parser_task.dart
diff --git a/pkg/compiler/lib/src/parser/parser_task.dart b/pkg/compiler/lib/src/parser/parser_task.dart
index fa715aac5b537b4bcba50448ad3312198a88533c..a79875fba4a36005530a03932c0e11fb5187f5c9 100644
--- a/pkg/compiler/lib/src/parser/parser_task.dart
+++ b/pkg/compiler/lib/src/parser/parser_task.dart
@@ -11,6 +11,8 @@ import '../compiler.dart' show
Compiler;
import '../elements/modelx.dart' show
ElementX;
+import '../options.dart' show
+ ParserOptions;
import '../tokens/token.dart' show
Token;
import '../tree/tree.dart' show
@@ -26,12 +28,9 @@ import 'parser.dart' show
Parser;
class ParserTask extends CompilerTask {
- final bool _enableConditionalDirectives;
+ final ParserOptions parserOptions;
- ParserTask(Compiler compiler,
- {bool enableConditionalDirectives: false})
- : this._enableConditionalDirectives = enableConditionalDirectives,
- super(compiler);
+ ParserTask(Compiler compiler, this.parserOptions) : super(compiler);
String get name => 'Parser';
@@ -43,8 +42,7 @@ class ParserTask extends CompilerTask {
return measure(() {
NodeListener listener = new NodeListener(
const ScannerOptions(), reporter, null);
- Parser parser = new Parser(
- listener, enableConditionalDirectives: _enableConditionalDirectives);
+ Parser parser = new Parser(listener, parserOptions);
try {
parser.parseUnit(token);
} on ParserError catch(_) {
« no previous file with comments | « pkg/compiler/lib/src/parser/parser.dart ('k') | pkg/compiler/lib/src/parser/partial_elements.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698