| Index: sdk/lib/_internal/compiler/implementation/script.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/script.dart b/sdk/lib/_internal/compiler/implementation/script.dart
|
| index f6cda016e80ee4b30e32a4231a1490da0d342614..396f4bd7500c8f8014d21b633bd4687b0272ddf2 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/script.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/script.dart
|
| @@ -16,6 +16,6 @@ class Script {
|
|
|
| Script(this.uri, this.file);
|
|
|
| - String get text => (file == null) ? null : file.text;
|
| + String get text => (file == null) ? null : file.slowText();
|
| String get name => (file == null) ? null : file.filename;
|
| }
|
|
|