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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 } | 524 } |
525 | 525 |
526 visitGotoStatement(GotoStatement node) { | 526 visitGotoStatement(GotoStatement node) { |
527 unimplemented('visitNode', node: node); | 527 unimplemented('visitNode', node: node); |
528 } | 528 } |
529 | 529 |
530 unimplemented(String message, {Node node}) { | 530 unimplemented(String message, {Node node}) { |
531 throw message; | 531 throw message; |
532 } | 532 } |
533 } | 533 } |
OLD | NEW |