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

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

Issue 12803014: New Analysis Engine translation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 f3c33b826aea17fc4a280268ff8fe87f21ab00a0..3ec31be1392131fa75afdbd04d226e4f7a5fb759 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_149_impl(type, offset);
+ _jtd_constructor_148_impl(type, offset);
}
- _jtd_constructor_149_impl(TokenType type, int offset) {
- _jtd_constructor_150_impl(type, offset, type.lexeme);
+ _jtd_constructor_148_impl(TokenType type, int offset) {
+ _jtd_constructor_149_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_150_impl(type4, offset3, value7);
+ _jtd_constructor_149_impl(type4, offset3, value7);
}
- _jtd_constructor_150_impl(TokenType type4, int offset3, String value7) {
+ _jtd_constructor_149_impl(TokenType type4, int offset3, String value7) {
this._type = type4;
this._value = value7;
this._offset = offset3;
@@ -626,7 +626,7 @@ class CharBufferScanner extends AbstractScanner {
/**
* The buffer from which characters will be read.
*/
- CharBuffer _buffer;
+ CharSequence _buffer;
/**
* The number of characters in the buffer.
*/
@@ -640,7 +640,7 @@ class CharBufferScanner extends AbstractScanner {
* @param source the source being scanned
* @param buffer the buffer from which characters will be read
*/
- CharBufferScanner(Source source, CharBuffer buffer) : super(source) {
+ CharBufferScanner(Source source, CharSequence buffer) : super(source) {
this._buffer = buffer;
this._bufferLength = buffer.length();
this._charOffset = -1;

Powered by Google App Engine
This is Rietveld 408576698