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

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

Issue 189333002: pkg/docgen: update markdown to 0.5.1 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: updates Created 6 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) 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 markdown; 5 library markdown.ast;
6
7 typedef Node Resolver(String name);
6 8
7 /// Base class for any AST item. Roughly corresponds to Node in the DOM. Will 9 /// Base class for any AST item. Roughly corresponds to Node in the DOM. Will
8 /// be either an Element or Text. 10 /// be either an Element or Text.
9 abstract class Node { 11 abstract class Node {
10 void accept(NodeVisitor visitor); 12 void accept(NodeVisitor visitor);
11 } 13 }
12 14
13 /// A named tag that can contain other nodes. 15 /// A named tag that can contain other nodes.
14 class Element implements Node { 16 class Element implements Node {
15 final String tag; 17 final String tag;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 void visitText(Text text); 58 void visitText(Text text);
57 59
58 /// Called when an Element has been reached, before its children have been 60 /// Called when an Element has been reached, before its children have been
59 /// visited. Return `false` to skip its children. 61 /// visited. Return `false` to skip its children.
60 bool visitElementBefore(Element element); 62 bool visitElementBefore(Element element);
61 63
62 /// Called when an Element has been reached, after its children have been 64 /// Called when an Element has been reached, after its children have been
63 /// visited. Will not be called if [visitElementBefore] returns `false`. 65 /// visited. Will not be called if [visitElementBefore] returns `false`.
64 void visitElementAfter(Element element); 66 void visitElementAfter(Element element);
65 } 67 }
OLDNEW
« no previous file with comments | « third_party/pkg/markdown/lib/markdown.dart ('k') | third_party/pkg/markdown/lib/src/block_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698