| Index: lib/compiler/implementation/scanner/byte_strings.dart
|
| diff --git a/lib/compiler/implementation/scanner/byte_strings.dart b/lib/compiler/implementation/scanner/byte_strings.dart
|
| index e6daab14eda03bc13210f2d1de1598bbc50ac29c..c9b18d0c83217775d85059563f49435ad4c57b26 100644
|
| --- a/lib/compiler/implementation/scanner/byte_strings.dart
|
| +++ b/lib/compiler/implementation/scanner/byte_strings.dart
|
| @@ -47,6 +47,9 @@ class ByteString implements SourceString {
|
| }
|
|
|
| bool isEmpty() => length == 0;
|
| + bool isPrivate() => !isEmpty() && bytes[offset] === $_;
|
| +
|
| + String get stringValue() => null;
|
| }
|
|
|
| /**
|
|
|