| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 abstract class 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. |
| 12 class Element implements Node { | 12 class Element implements Node { |
| 13 final String tag; | 13 final String tag; |
| 14 final List<Node> children; | 14 final List<Node> children; |
| 15 final Map<String, String> attributes; | 15 final Map<String, String> attributes; |
| 16 | 16 |
| 17 Element(this.tag, this.children) | 17 Element(this.tag, this.children) |
| (...skipping 24 matching lines...) Expand all Loading... |
| 42 /// A plain text element. | 42 /// A plain text element. |
| 43 class Text implements Node { | 43 class Text implements Node { |
| 44 final String text; | 44 final String text; |
| 45 Text(this.text); | 45 Text(this.text); |
| 46 | 46 |
| 47 void accept(NodeVisitor visitor) => visitor.visitText(this); | 47 void accept(NodeVisitor visitor) => visitor.visitText(this); |
| 48 } | 48 } |
| 49 | 49 |
| 50 /// Visitor pattern for the AST. Renderers or other AST transformers should | 50 /// Visitor pattern for the AST. Renderers or other AST transformers should |
| 51 /// implement this. | 51 /// implement this. |
| 52 interface NodeVisitor { | 52 abstract class NodeVisitor { |
| 53 /// Called when a Text node has been reached. | 53 /// Called when a Text node has been reached. |
| 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 } |
| OLD | NEW |