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

Unified 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, 8 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer_experimental/lib/src/generated/html.dart
diff --git a/pkg/analyzer_experimental/lib/src/generated/html.dart b/pkg/analyzer_experimental/lib/src/generated/html.dart
index 58f2161bb2fe0fe6039fbe7a05a975587e073388..0c0d3cfb4785d77bc7020400f98c3e784361eeec 100644
--- a/pkg/analyzer_experimental/lib/src/generated/html.dart
+++ b/pkg/analyzer_experimental/lib/src/generated/html.dart
@@ -43,10 +43,10 @@ class Token {
* @param offset the offset from the beginning of the file to the first character in the token
*/
Token.con1(TokenType type, int offset) {
- _jtd_constructor_150_impl(type, offset);
+ _jtd_constructor_151_impl(type, offset);
}
- _jtd_constructor_150_impl(TokenType type, int offset) {
- _jtd_constructor_151_impl(type, offset, type.lexeme);
+ _jtd_constructor_151_impl(TokenType type, int offset) {
+ _jtd_constructor_152_impl(type, offset, type.lexeme);
}
/**
* Initialize a newly created token.
@@ -55,9 +55,9 @@ class Token {
* @param value the lexeme represented by this token (not {@code null})
*/
Token.con2(TokenType type2, int offset2, String value2) {
- _jtd_constructor_151_impl(type2, offset2, value2);
+ _jtd_constructor_152_impl(type2, offset2, value2);
}
- _jtd_constructor_151_impl(TokenType type2, int offset2, String value2) {
+ _jtd_constructor_152_impl(TokenType type2, int offset2, String value2) {
this._type = type2;
this._value = StringUtilities.intern(value2);
this._offset = offset2;

Powered by Google App Engine
This is Rietveld 408576698