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

Unified Diff: pkg/analyzer_experimental/lib/src/generated/html.dart

Issue 12604020: analyzer_experimental checkpoint and AnalysisContext example. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't mark Source as 'changed'. Created 7 years, 9 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 11144856947f344d72feb9624d847d2b44d2fbc7..f3c33b826aea17fc4a280268ff8fe87f21ab00a0 100644
--- a/pkg/analyzer_experimental/lib/src/generated/html.dart
+++ b/pkg/analyzer_experimental/lib/src/generated/html.dart
@@ -42,10 +42,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_147_impl(type, offset);
+ _jtd_constructor_149_impl(type, offset);
}
- _jtd_constructor_147_impl(TokenType type, int offset) {
- _jtd_constructor_148_impl(type, offset, type.lexeme);
+ _jtd_constructor_149_impl(TokenType type, int offset) {
+ _jtd_constructor_150_impl(type, offset, type.lexeme);
}
/**
* Initialize a newly created token.
@@ -54,9 +54,9 @@ class Token {
* @param value the lexeme represented by this token (not {@code null})
*/
Token.con2(TokenType type4, int offset3, String value7) {
- _jtd_constructor_148_impl(type4, offset3, value7);
+ _jtd_constructor_150_impl(type4, offset3, value7);
}
- _jtd_constructor_148_impl(TokenType type4, int offset3, String value7) {
+ _jtd_constructor_150_impl(TokenType type4, int offset3, String value7) {
this._type = type4;
this._value = value7;
this._offset = offset3;

Powered by Google App Engine
This is Rietveld 408576698