| 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 tree; | 5 part of tree; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * Pretty-prints Node tree in XML-like format. | 8 * Pretty-prints Node tree in XML-like format. |
| 9 * | 9 * |
| 10 * TODO(smok): Add main() to run from command-line to print out tree for given | 10 * TODO(smok): Add main() to run from command-line to print out tree for given |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 } | 506 } |
| 507 | 507 |
| 508 visitGotoStatement(GotoStatement node) { | 508 visitGotoStatement(GotoStatement node) { |
| 509 unimplemented('visitNode', node: node); | 509 unimplemented('visitNode', node: node); |
| 510 } | 510 } |
| 511 | 511 |
| 512 unimplemented(String message, {Node node}) { | 512 unimplemented(String message, {Node node}) { |
| 513 throw message; | 513 throw message; |
| 514 } | 514 } |
| 515 } | 515 } |
| OLD | NEW |