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

Side by Side Diff: lib/compiler/implementation/tree/prettyprint.dart

Issue 10990060: Added support for exports and re-exports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Created 8 years, 2 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 | Annotate | Revision Log
OLDNEW
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 /** 5 /**
6 * Pretty-prints Node tree in XML-like format. 6 * Pretty-prints Node tree in XML-like format.
7 * 7 *
8 * TODO(smok): Add main() to run from command-line to print out tree for given 8 * TODO(smok): Add main() to run from command-line to print out tree for given
9 * .dart file. 9 * .dart file.
10 */ 10 */
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 } 413 }
414 414
415 visitGotoStatement(GotoStatement node) { 415 visitGotoStatement(GotoStatement node) {
416 unimplemented('visitNode', node: node); 416 unimplemented('visitNode', node: node);
417 } 417 }
418 418
419 visitImport(Import node) { 419 visitImport(Import node) {
420 unimplemented('visitNode', node: node); 420 unimplemented('visitNode', node: node);
421 } 421 }
422 422
423 visitLibraryDependency(Node node) {
424 unimplemented('visitNode', node: node);
425 }
426
423 visitLibraryName(LibraryName node) { 427 visitLibraryName(LibraryName node) {
424 unimplemented('visitNode', node: node); 428 unimplemented('visitNode', node: node);
425 } 429 }
426 430
427 visitLibraryTag(LibraryTag node) { 431 visitLibraryTag(LibraryTag node) {
428 unimplemented('visitNode', node: node); 432 unimplemented('visitNode', node: node);
429 } 433 }
430 434
431 visitLiteral(Literal node) { 435 visitLiteral(Literal node) {
432 unimplemented('visitNode', node: node); 436 unimplemented('visitNode', node: node);
(...skipping 24 matching lines...) Expand all
457 } 461 }
458 462
459 visitStringNode(StringNode node) { 463 visitStringNode(StringNode node) {
460 unimplemented('visitNode', node: node); 464 unimplemented('visitNode', node: node);
461 } 465 }
462 466
463 unimplemented(String message, {Node node}) { 467 unimplemented(String message, {Node node}) {
464 throw message; 468 throw message;
465 } 469 }
466 } 470 }
OLDNEW
« no previous file with comments | « lib/compiler/implementation/tree/nodes.dart ('k') | lib/compiler/implementation/tree/unparser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698