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

Side by Side Diff: pkg/compiler/lib/src/parser/parser_task.dart

Issue 2221893003: pkg/compiler: fix imports (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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 CompilerTask; 8 import '../common/tasks.dart' show CompilerTask;
9 import '../compiler.dart' show Compiler; 9 import '../compiler.dart' show Compiler;
10 import '../elements/modelx.dart' show ElementX; 10 import '../elements/modelx.dart' show ElementX;
11 import '../options.dart' show ParserOptions; 11 import '../options.dart' show ParserOptions;
12 import '../tokens/token.dart' show Token; 12 import '../tokens/token.dart' show Token;
13 import '../tree/tree.dart' show Node; 13 import '../tree/tree.dart' show Node;
14
15 import 'element_listener.dart' show ScannerOptions; 14 import 'element_listener.dart' show ScannerOptions;
16 import 'listener.dart' show ParserError; 15 import 'listener.dart' show ParserError;
17 import 'node_listener.dart' show NodeListener; 16 import 'node_listener.dart' show NodeListener;
18 import 'parser.dart' show Parser; 17 import 'parser.dart' show Parser;
19 18
20 class ParserTask extends CompilerTask { 19 class ParserTask extends CompilerTask {
21 final ParserOptions parserOptions; 20 final ParserOptions parserOptions;
22 final Compiler compiler; 21 final Compiler compiler;
23 22
24 ParserTask(Compiler compiler, this.parserOptions) 23 ParserTask(Compiler compiler, this.parserOptions)
(...skipping 16 matching lines...) Expand all
41 } on ParserError catch (_) { 40 } on ParserError catch (_) {
42 assert(invariant(token, compiler.compilationFailed)); 41 assert(invariant(token, compiler.compilationFailed));
43 return listener.makeNodeList(0, null, null, '\n'); 42 return listener.makeNodeList(0, null, null, '\n');
44 } 43 }
45 Node result = listener.popNode(); 44 Node result = listener.popNode();
46 assert(listener.nodes.isEmpty); 45 assert(listener.nodes.isEmpty);
47 return result; 46 return result;
48 }); 47 });
49 } 48 }
50 } 49 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/parser/parser.dart ('k') | pkg/compiler/lib/src/parser/partial_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698