| Index: dart/lib/compiler/implementation/tools/mini_parser.dart
|
| diff --git a/dart/lib/compiler/implementation/tools/mini_parser.dart b/dart/lib/compiler/implementation/tools/mini_parser.dart
|
| index 58cafd841150d2a24708b06acfebe6e2425d1c91..b512a8c5660ccd31a8db6d835cfdd8715417f729 100644
|
| --- a/dart/lib/compiler/implementation/tools/mini_parser.dart
|
| +++ b/dart/lib/compiler/implementation/tools/mini_parser.dart
|
| @@ -302,7 +302,7 @@ class MySourceFile extends SourceFile {
|
|
|
| MySourceFile(filename, this.rawText) : super(filename, null);
|
|
|
| - String get text() {
|
| + String get text {
|
| if (rawText is String) {
|
| return rawText;
|
| } else {
|
| @@ -324,6 +324,6 @@ class MySourceFile extends SourceFile {
|
|
|
| class Mock {
|
| const Mock();
|
| - bool get useColors() => true;
|
| + bool get useColors => true;
|
| internalError(message) { throw message.toString(); }
|
| }
|
|
|