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

Unified Diff: lib/compiler/implementation/scanner/keyword.dart

Issue 10001008: Many type fixes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 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: lib/compiler/implementation/scanner/keyword.dart
diff --git a/lib/compiler/implementation/scanner/keyword.dart b/lib/compiler/implementation/scanner/keyword.dart
index e9ddcd55250752a92b9d53f77ded5d1113e65c40..761c130aee22f805b6a167395df0c27efaef4400 100644
--- a/lib/compiler/implementation/scanner/keyword.dart
+++ b/lib/compiler/implementation/scanner/keyword.dart
@@ -139,6 +139,11 @@ class Keyword implements SourceString {
String slowToString() => syntax;
String get stringValue() => syntax;
+ SourceString copyWithoutQuotes(int initial, int terminal) {
+ // TODO(lrn): consider remodelling to avoid having this method in keywords.
+ return this;
+ }
+
bool isEmpty() => false;
bool isPrivate() => false;
}
« no previous file with comments | « lib/compiler/implementation/scanner/byte_strings.dart ('k') | lib/compiler/implementation/scanner/listener.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698