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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library dart2js.parser.task; 5 library dart2js.parser.task;
6 6
7 import '../common.dart'; 7 import '../common.dart';
8 import '../common/tasks.dart' show 8 import '../common/tasks.dart' show
9 CompilerTask; 9 CompilerTask;
10 import '../compiler.dart' show 10 import '../compiler.dart' show
11 Compiler; 11 Compiler;
12 import '../elements/modelx.dart' show 12 import '../elements/modelx.dart' show
13 ElementX; 13 ElementX;
14 import '../options.dart' show
15 ParserOptions;
14 import '../tokens/token.dart' show 16 import '../tokens/token.dart' show
15 Token; 17 Token;
16 import '../tree/tree.dart' show 18 import '../tree/tree.dart' show
17 Node; 19 Node;
18 20
19 import 'element_listener.dart' show 21 import 'element_listener.dart' show
20 ScannerOptions; 22 ScannerOptions;
21 import 'listener.dart' show 23 import 'listener.dart' show
22 ParserError; 24 ParserError;
23 import 'node_listener.dart' show 25 import 'node_listener.dart' show
24 NodeListener; 26 NodeListener;
25 import 'parser.dart' show 27 import 'parser.dart' show
26 Parser; 28 Parser;
27 29
28 class ParserTask extends CompilerTask { 30 class ParserTask extends CompilerTask {
29 final bool _enableConditionalDirectives; 31 final ParserOptions parserOptions;
30 32
31 ParserTask(Compiler compiler, 33 ParserTask(Compiler compiler, this.parserOptions) : super(compiler);
32 {bool enableConditionalDirectives: false})
33 : this._enableConditionalDirectives = enableConditionalDirectives,
34 super(compiler);
35 34
36 String get name => 'Parser'; 35 String get name => 'Parser';
37 36
38 Node parse(ElementX element) { 37 Node parse(ElementX element) {
39 return measure(() => element.parseNode(compiler.parsing)); 38 return measure(() => element.parseNode(compiler.parsing));
40 } 39 }
41 40
42 Node parseCompilationUnit(Token token) { 41 Node parseCompilationUnit(Token token) {
43 return measure(() { 42 return measure(() {
44 NodeListener listener = new NodeListener( 43 NodeListener listener = new NodeListener(
45 const ScannerOptions(), reporter, null); 44 const ScannerOptions(), reporter, null);
46 Parser parser = new Parser( 45 Parser parser = new Parser(listener, parserOptions);
47 listener, enableConditionalDirectives: _enableConditionalDirectives);
48 try { 46 try {
49 parser.parseUnit(token); 47 parser.parseUnit(token);
50 } on ParserError catch(_) { 48 } on ParserError catch(_) {
51 assert(invariant(token, compiler.compilationFailed)); 49 assert(invariant(token, compiler.compilationFailed));
52 return listener.makeNodeList(0, null, null, '\n'); 50 return listener.makeNodeList(0, null, null, '\n');
53 } 51 }
54 Node result = listener.popNode(); 52 Node result = listener.popNode();
55 assert(listener.nodes.isEmpty); 53 assert(listener.nodes.isEmpty);
56 return result; 54 return result;
57 }); 55 });
58 } 56 }
59 } 57 }
OLDNEW
« 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