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

Unified Diff: pkg/front_end/lib/src/fasta/scanner/token.dart

Issue 2915593004: update fasta StringToken.toString to make formatter happy (Closed)
Patch Set: rebase Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/lib/src/fasta/scanner/token.dart
diff --git a/pkg/front_end/lib/src/fasta/scanner/token.dart b/pkg/front_end/lib/src/fasta/scanner/token.dart
index 3ab4c0cd7a1f4446782e5b981a4b816879b9d7ad..afbe541f58289c7073d86a7812bb6d00f9ea7df1 100644
--- a/pkg/front_end/lib/src/fasta/scanner/token.dart
+++ b/pkg/front_end/lib/src/fasta/scanner/token.dart
@@ -102,7 +102,7 @@ class StringToken extends analyzer.TokenWithComment
bool get isIdentifier => identical(kind, IDENTIFIER_TOKEN);
@override
- String toString() => "StringToken($lexeme)";
+ String toString() => lexeme;
static final StringCanonicalizer canonicalizer = new StringCanonicalizer();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698