| 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;
|
| }
|
|
|