| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 part of scanner; | 5 part of scanner; |
| 6 | 6 |
| 7 const bool VERBOSE = false; | 7 const bool VERBOSE = false; |
| 8 | 8 |
| 9 /** | 9 /** |
| 10 * A parser event listener that does nothing except throw exceptions | 10 * A parser event listener that does nothing except throw exceptions |
| (...skipping 2473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2484 if (element is PartialElement) { | 2484 if (element is PartialElement) { |
| 2485 PartialElement partial = element as PartialElement; | 2485 PartialElement partial = element as PartialElement; |
| 2486 partial.hasParseError = true; | 2486 partial.hasParseError = true; |
| 2487 } | 2487 } |
| 2488 return new ErrorNode(element.position, e.reason); | 2488 return new ErrorNode(element.position, e.reason); |
| 2489 } | 2489 } |
| 2490 Node node = listener.popNode(); | 2490 Node node = listener.popNode(); |
| 2491 assert(listener.nodes.isEmpty); | 2491 assert(listener.nodes.isEmpty); |
| 2492 return node; | 2492 return node; |
| 2493 } | 2493 } |
| OLD | NEW |