| OLD | NEW |
| 1 /// The Dart HTML library. | 1 /// The Dart HTML library. |
| 2 /// | 2 /// |
| 3 /// For examples, see | 3 /// For examples, see |
| 4 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) | 4 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) |
| 5 /// on Github. | 5 /// on Github. |
| 6 library dart.dom.html; | 6 library dart.dom.html; |
| 7 | 7 |
| 8 import 'dart:async'; | 8 import 'dart:async'; |
| 9 import 'dart:collection'; | 9 import 'dart:collection'; |
| 10 import 'dart:_collection-dev' hide Symbol; | 10 import 'dart:_collection-dev' hide Symbol; |
| (...skipping 16388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16399 } | 16399 } |
| 16400 | 16400 |
| 16401 /** Unbinds all bound attributes. */ | 16401 /** Unbinds all bound attributes. */ |
| 16402 @Experimental | 16402 @Experimental |
| 16403 void unbindAll() { | 16403 void unbindAll() { |
| 16404 TemplateElement.mdvPackage(this).unbindAll(); | 16404 TemplateElement.mdvPackage(this).unbindAll(); |
| 16405 } | 16405 } |
| 16406 | 16406 |
| 16407 /** Gets the template instance that instantiated this node, if any. */ | 16407 /** Gets the template instance that instantiated this node, if any. */ |
| 16408 @Experimental | 16408 @Experimental |
| 16409 TemplateInstance get templateInstance => mdvPackage(this).templateInstance; | 16409 TemplateInstance get templateInstance => |
| 16410 TemplateElement.mdvPackage(this).templateInstance; |
| 16410 | 16411 |
| 16411 | 16412 |
| 16412 @DomName('Node.ATTRIBUTE_NODE') | 16413 @DomName('Node.ATTRIBUTE_NODE') |
| 16413 @DocsEditable | 16414 @DocsEditable |
| 16414 static const int ATTRIBUTE_NODE = 2; | 16415 static const int ATTRIBUTE_NODE = 2; |
| 16415 | 16416 |
| 16416 @DomName('Node.CDATA_SECTION_NODE') | 16417 @DomName('Node.CDATA_SECTION_NODE') |
| 16417 @DocsEditable | 16418 @DocsEditable |
| 16418 static const int CDATA_SECTION_NODE = 4; | 16419 static const int CDATA_SECTION_NODE = 4; |
| 16419 | 16420 |
| (...skipping 12342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 28762 _position = nextPosition; | 28763 _position = nextPosition; |
| 28763 return true; | 28764 return true; |
| 28764 } | 28765 } |
| 28765 _current = null; | 28766 _current = null; |
| 28766 _position = _array.length; | 28767 _position = _array.length; |
| 28767 return false; | 28768 return false; |
| 28768 } | 28769 } |
| 28769 | 28770 |
| 28770 T get current => _current; | 28771 T get current => _current; |
| 28771 } | 28772 } |
| OLD | NEW |