Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Side by Side Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 17973003: fix analysis issue caught by dart2js bots (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698