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

Side by Side Diff: dart/pkg/dartdoc/lib/src/markdown/ast.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 part of markdown;
2
3 // 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
4 // 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
5 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
6 4
7 /// 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
8 /// be either an Element or Text. 6 /// be either an Element or Text.
9 abstract class Node { 7 abstract class Node {
10 void accept(NodeVisitor visitor); 8 void accept(NodeVisitor visitor);
11 } 9 }
12 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 void visitText(Text text); 54 void visitText(Text text);
57 55
58 /// 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
59 /// visited. Return `false` to skip its children. 57 /// visited. Return `false` to skip its children.
60 bool visitElementBefore(Element element); 58 bool visitElementBefore(Element element);
61 59
62 /// 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
63 /// visited. Will not be called if [visitElementBefore] returns `false`. 61 /// visited. Will not be called if [visitElementBefore] returns `false`.
64 void visitElementAfter(Element element); 62 void visitElementAfter(Element element);
65 } 63 }
OLDNEW
« no previous file with comments | « dart/pkg/dartdoc/lib/src/dartdoc/utils.dart ('k') | dart/pkg/dartdoc/lib/src/markdown/block_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698