| 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 markdown; |
| 6 |
| 5 /// Base class for any AST item. Roughly corresponds to Node in the DOM. Will | 7 /// Base class for any AST item. Roughly corresponds to Node in the DOM. Will |
| 6 /// be either an Element or Text. | 8 /// be either an Element or Text. |
| 7 abstract class Node { | 9 abstract class Node { |
| 8 void accept(NodeVisitor visitor); | 10 void accept(NodeVisitor visitor); |
| 9 } | 11 } |
| 10 | 12 |
| 11 /// A named tag that can contain other nodes. | 13 /// A named tag that can contain other nodes. |
| 12 class Element implements Node { | 14 class Element implements Node { |
| 13 final String tag; | 15 final String tag; |
| 14 final List<Node> children; | 16 final List<Node> children; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 void visitText(Text text); | 56 void visitText(Text text); |
| 55 | 57 |
| 56 /// Called when an Element has been reached, before its children have been | 58 /// Called when an Element has been reached, before its children have been |
| 57 /// visited. Return `false` to skip its children. | 59 /// visited. Return `false` to skip its children. |
| 58 bool visitElementBefore(Element element); | 60 bool visitElementBefore(Element element); |
| 59 | 61 |
| 60 /// Called when an Element has been reached, after its children have been | 62 /// Called when an Element has been reached, after its children have been |
| 61 /// visited. Will not be called if [visitElementBefore] returns `false`. | 63 /// visited. Will not be called if [visitElementBefore] returns `false`. |
| 62 void visitElementAfter(Element element); | 64 void visitElementAfter(Element element); |
| 63 } | 65 } |
| OLD | NEW |