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

Side by Side Diff: lib/dartdoc/ast.dart

Issue 9555013: Get dartdoc in the SDK and working correctly. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update copyright date. Created 8 years, 9 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) 2011, 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 /// Base class for any AST item. Roughly corresponds to Node in the DOM. Will 5 /// Base class for any AST item. Roughly corresponds to Node in the DOM. Will
6 /// be either an Element or Text. 6 /// be either an Element or Text.
7 interface Node { 7 interface Node {
8 void accept(NodeVisitor visitor); 8 void accept(NodeVisitor visitor);
9 } 9 }
10 10
11 /// A named tag that can contain other nodes. 11 /// A named tag that can contain other nodes.
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 void visitText(Text text); 54 void visitText(Text text);
55 55
56 /// Called when an Element has been reached, before its children have been 56 /// Called when an Element has been reached, before its children have been
57 /// visited. Return `false` to skip its children. 57 /// visited. Return `false` to skip its children.
58 bool visitElementBefore(Element element); 58 bool visitElementBefore(Element element);
59 59
60 /// Called when an Element has been reached, after its children have been 60 /// Called when an Element has been reached, after its children have been
61 /// visited. Will not be called if [visitElementBefore] returns `false`. 61 /// visited. Will not be called if [visitElementBefore] returns `false`.
62 void visitElementAfter(Element element); 62 void visitElementAfter(Element element);
63 } 63 }
OLDNEW
« frog/presubmit.py ('K') | « lib/dartdoc/README.txt ('k') | lib/dartdoc/block_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698