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

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

Issue 14050010: New analyzer_experimental snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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 3
4 library engine.html; 4 library engine.html;
5 5
6 import 'dart:collection'; 6 import 'dart:collection';
7 import 'java_core.dart'; 7 import 'java_core.dart';
8 import 'java_engine.dart'; 8 import 'java_engine.dart';
9 import 'source.dart'; 9 import 'source.dart';
10 import 'error.dart'; 10 import 'error.dart';
(...skipping 25 matching lines...) Expand all
36 /** 36 /**
37 * The lexeme represented by this token. 37 * The lexeme represented by this token.
38 */ 38 */
39 String _value; 39 String _value;
40 /** 40 /**
41 * Initialize a newly created token. 41 * Initialize a newly created token.
42 * @param type the token type (not {@code null}) 42 * @param type the token type (not {@code null})
43 * @param offset the offset from the beginning of the file to the first charac ter in the token 43 * @param offset the offset from the beginning of the file to the first charac ter in the token
44 */ 44 */
45 Token.con1(TokenType type, int offset) { 45 Token.con1(TokenType type, int offset) {
46 _jtd_constructor_150_impl(type, offset); 46 _jtd_constructor_151_impl(type, offset);
47 } 47 }
48 _jtd_constructor_150_impl(TokenType type, int offset) { 48 _jtd_constructor_151_impl(TokenType type, int offset) {
49 _jtd_constructor_151_impl(type, offset, type.lexeme); 49 _jtd_constructor_152_impl(type, offset, type.lexeme);
50 } 50 }
51 /** 51 /**
52 * Initialize a newly created token. 52 * Initialize a newly created token.
53 * @param type the token type (not {@code null}) 53 * @param type the token type (not {@code null})
54 * @param offset the offset from the beginning of the file to the first charac ter in the token 54 * @param offset the offset from the beginning of the file to the first charac ter in the token
55 * @param value the lexeme represented by this token (not {@code null}) 55 * @param value the lexeme represented by this token (not {@code null})
56 */ 56 */
57 Token.con2(TokenType type2, int offset2, String value2) { 57 Token.con2(TokenType type2, int offset2, String value2) {
58 _jtd_constructor_151_impl(type2, offset2, value2); 58 _jtd_constructor_152_impl(type2, offset2, value2);
59 } 59 }
60 _jtd_constructor_151_impl(TokenType type2, int offset2, String value2) { 60 _jtd_constructor_152_impl(TokenType type2, int offset2, String value2) {
61 this._type = type2; 61 this._type = type2;
62 this._value = StringUtilities.intern(value2); 62 this._value = StringUtilities.intern(value2);
63 this._offset = offset2; 63 this._offset = offset2;
64 } 64 }
65 /** 65 /**
66 * Return the offset from the beginning of the file to the character after las t character of the 66 * Return the offset from the beginning of the file to the character after las t character of the
67 * token. 67 * token.
68 * @return the offset from the beginning of the file to the first character af ter last character 68 * @return the offset from the beginning of the file to the first character af ter last character
69 * of the token 69 * of the token
70 */ 70 */
(...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after
1426 */ 1426 */
1427 void set element(HtmlElementImpl element2) { 1427 void set element(HtmlElementImpl element2) {
1428 this._element = element2; 1428 this._element = element2;
1429 } 1429 }
1430 void visitChildren(XmlVisitor<Object> visitor) { 1430 void visitChildren(XmlVisitor<Object> visitor) {
1431 for (XmlTagNode node in _tagNodes) { 1431 for (XmlTagNode node in _tagNodes) {
1432 node.accept(visitor); 1432 node.accept(visitor);
1433 } 1433 }
1434 } 1434 }
1435 } 1435 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698