| OLD | NEW |
| 1 // This code was auto-generated, is not intended to be edited, and is subject to | 1 // This code was auto-generated, is not intended to be edited, and is subject to |
| 2 // significant change. Please see the README file for more information. | 2 // significant change. Please see the README file for more information. |
| 3 library engine.html; | 3 library engine.html; |
| 4 import 'dart:collection'; | 4 import 'dart:collection'; |
| 5 import 'java_core.dart'; | 5 import 'java_core.dart'; |
| 6 import 'java_engine.dart'; | 6 import 'java_engine.dart'; |
| 7 import 'source.dart'; | 7 import 'source.dart'; |
| 8 import 'error.dart'; | 8 import 'error.dart'; |
| 9 import 'instrumentation.dart'; | 9 import 'instrumentation.dart'; |
| 10 import 'element.dart' show HtmlElementImpl; | 10 import 'element.dart' show HtmlElementImpl; |
| 11 import 'engine.dart' show AnalysisEngine; |
| 11 /** | 12 /** |
| 12 * Instances of the class {@code Token} represent a token that was scanned from
the input. Each | 13 * Instances of the class {@code Token} represent a token that was scanned from
the input. Each |
| 13 * token knows which token follows it, acting as the head of a linked list of to
kens. | 14 * token knows which token follows it, acting as the head of a linked list of to
kens. |
| 14 * @coverage dart.engine.html | 15 * @coverage dart.engine.html |
| 15 */ | 16 */ |
| 16 class Token { | 17 class Token { |
| 17 | 18 |
| 18 /** | 19 /** |
| 19 * The offset from the beginning of the file to the first character in the tok
en. | 20 * The offset from the beginning of the file to the first character in the tok
en. |
| 20 */ | 21 */ |
| (...skipping 1597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1618 */ | 1619 */ |
| 1619 void set element(HtmlElementImpl element2) { | 1620 void set element(HtmlElementImpl element2) { |
| 1620 this._element = element2; | 1621 this._element = element2; |
| 1621 } | 1622 } |
| 1622 void visitChildren(XmlVisitor<Object> visitor) { | 1623 void visitChildren(XmlVisitor<Object> visitor) { |
| 1623 for (XmlTagNode node in _tagNodes) { | 1624 for (XmlTagNode node in _tagNodes) { |
| 1624 node.accept(visitor); | 1625 node.accept(visitor); |
| 1625 } | 1626 } |
| 1626 } | 1627 } |
| 1627 } | 1628 } |
| OLD | NEW |