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

Side by Side Diff: pkg/analyzer_experimental/lib/src/generated/html.dart

Issue 22285004: New analyzer_experimental snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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
OLDNEW
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;
(...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 node.accept(this); 917 node.accept(this);
918 } 918 }
919 } 919 }
920 } 920 }
921 /** 921 /**
922 * The enumeration `TokenType` defines the types of tokens that can be returned by the 922 * The enumeration `TokenType` defines the types of tokens that can be returned by the
923 * scanner. 923 * scanner.
924 * 924 *
925 * @coverage dart.engine.html 925 * @coverage dart.engine.html
926 */ 926 */
927 class TokenType implements Comparable<TokenType> { 927 class TokenType implements Enum<TokenType> {
928 928
929 /** 929 /**
930 * The type of the token that marks the end of the input. 930 * The type of the token that marks the end of the input.
931 */ 931 */
932 static final TokenType EOF = new TokenType_EOF('EOF', 0, ""); 932 static final TokenType EOF = new TokenType_EOF('EOF', 0, "");
933 static final TokenType EQ = new TokenType('EQ', 1, "="); 933 static final TokenType EQ = new TokenType('EQ', 1, "=");
934 static final TokenType GT = new TokenType('GT', 2, ">"); 934 static final TokenType GT = new TokenType('GT', 2, ">");
935 static final TokenType LT_SLASH = new TokenType('LT_SLASH', 3, "</"); 935 static final TokenType LT_SLASH = new TokenType('LT_SLASH', 3, "</");
936 static final TokenType LT = new TokenType('LT', 4, "<"); 936 static final TokenType LT = new TokenType('LT', 4, "<");
937 static final TokenType SLASH_GT = new TokenType('SLASH_GT', 5, "/>"); 937 static final TokenType SLASH_GT = new TokenType('SLASH_GT', 5, "/>");
(...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after
1754 */ 1754 */
1755 void set element(HtmlElementImpl element2) { 1755 void set element(HtmlElementImpl element2) {
1756 this._element = element2; 1756 this._element = element2;
1757 } 1757 }
1758 void visitChildren(XmlVisitor<Object> visitor) { 1758 void visitChildren(XmlVisitor<Object> visitor) {
1759 for (XmlTagNode node in _tagNodes) { 1759 for (XmlTagNode node in _tagNodes) {
1760 node.accept(visitor); 1760 node.accept(visitor);
1761 } 1761 }
1762 } 1762 }
1763 } 1763 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698