| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // This code was auto-generated, is not intended to be edited, and is subject to |
| 6 // significant change. Please see the README file for more information. | 6 // significant change. Please see the README file for more information. |
| 7 | 7 |
| 8 library engine.html; | 8 library engine.html; |
| 9 | 9 |
| 10 import 'dart:collection'; | 10 import 'dart:collection'; |
| (...skipping 1142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1153 /** | 1153 /** |
| 1154 * The reference to the [Element]. | 1154 * The reference to the [Element]. |
| 1155 */ | 1155 */ |
| 1156 class XmlExpression_Reference { | 1156 class XmlExpression_Reference { |
| 1157 Element element; | 1157 Element element; |
| 1158 | 1158 |
| 1159 int offset = 0; | 1159 int offset = 0; |
| 1160 | 1160 |
| 1161 int length = 0; | 1161 int length = 0; |
| 1162 | 1162 |
| 1163 XmlExpression_Reference(Element element, int offset, int length) { | 1163 XmlExpression_Reference(this.element, this.offset, this.length); |
| 1164 this.element = element; | |
| 1165 this.offset = offset; | |
| 1166 this.length = length; | |
| 1167 } | |
| 1168 } | 1164 } |
| 1169 | 1165 |
| 1170 /** | 1166 /** |
| 1171 * The abstract class `XmlNode` defines behavior common to all XML/HTML nodes. | 1167 * The abstract class `XmlNode` defines behavior common to all XML/HTML nodes. |
| 1172 */ | 1168 */ |
| 1173 abstract class XmlNode { | 1169 abstract class XmlNode { |
| 1174 /** | 1170 /** |
| 1175 * The parent of the node, or `null` if the node is the root of an AST structu
re. | 1171 * The parent of the node, or `null` if the node is the root of an AST structu
re. |
| 1176 */ | 1172 */ |
| 1177 XmlNode _parent; | 1173 XmlNode _parent; |
| (...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1881 */ | 1877 */ |
| 1882 abstract class XmlVisitor<R> { | 1878 abstract class XmlVisitor<R> { |
| 1883 R visitHtmlScriptTagNode(HtmlScriptTagNode node); | 1879 R visitHtmlScriptTagNode(HtmlScriptTagNode node); |
| 1884 | 1880 |
| 1885 R visitHtmlUnit(HtmlUnit htmlUnit); | 1881 R visitHtmlUnit(HtmlUnit htmlUnit); |
| 1886 | 1882 |
| 1887 R visitXmlAttributeNode(XmlAttributeNode xmlAttributeNode); | 1883 R visitXmlAttributeNode(XmlAttributeNode xmlAttributeNode); |
| 1888 | 1884 |
| 1889 R visitXmlTagNode(XmlTagNode xmlTagNode); | 1885 R visitXmlTagNode(XmlTagNode xmlTagNode); |
| 1890 } | 1886 } |
| OLD | NEW |