| Index: pkg/analyzer/lib/src/generated/scanner.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/scanner.dart b/pkg/analyzer/lib/src/generated/scanner.dart
|
| index cd56ce17dcaad8d755054018511f79d8469a8943..13808d54de7fa81376a59de960b191399889e7c3 100644
|
| --- a/pkg/analyzer/lib/src/generated/scanner.dart
|
| +++ b/pkg/analyzer/lib/src/generated/scanner.dart
|
| @@ -405,6 +405,9 @@ class Keyword {
|
| */
|
| const Keyword(this.name, this.syntax, [this.isPseudoKeyword = false]);
|
|
|
| + @override
|
| + String toString() => name;
|
| +
|
| /**
|
| * Create a table mapping the lexemes of keywords to the corresponding keyword
|
| * and return the table that was created.
|
| @@ -2189,6 +2192,9 @@ class TokenClass {
|
| final int precedence;
|
|
|
| const TokenClass(this.name, [this.precedence = 0]);
|
| +
|
| + @override
|
| + String toString() => name;
|
| }
|
|
|
| /**
|
| @@ -2524,6 +2530,9 @@ class TokenType {
|
| * an operator.
|
| */
|
| int get precedence => _tokenClass.precedence;
|
| +
|
| + @override
|
| + String toString() => name;
|
| }
|
|
|
| class TokenType_EOF extends TokenType {
|
|
|