| OLD | NEW |
| 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/tasks.dart' show | 8 import '../common/tasks.dart' show |
| 8 CompilerTask; | 9 CompilerTask; |
| 9 import '../compiler.dart' show | 10 import '../compiler.dart' show |
| 10 Compiler; | 11 Compiler; |
| 11 import '../diagnostics/invariant.dart' show | |
| 12 invariant; | |
| 13 import '../elements/modelx.dart' show | 12 import '../elements/modelx.dart' show |
| 14 ElementX; | 13 ElementX; |
| 15 import '../tokens/token.dart' show | 14 import '../tokens/token.dart' show |
| 16 Token; | 15 Token; |
| 17 import '../tree/tree.dart' show | 16 import '../tree/tree.dart' show |
| 18 Node; | 17 Node; |
| 19 | 18 |
| 20 import 'listener.dart' show | 19 import 'listener.dart' show |
| 21 ParserError; | 20 ParserError; |
| 22 import 'node_listener.dart' show | 21 import 'node_listener.dart' show |
| (...skipping 18 matching lines...) Expand all Loading... |
| 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 } |
| OLD | NEW |