| Index: dart/lib/compiler/implementation/script.dart
|
| diff --git a/dart/lib/compiler/implementation/script.dart b/dart/lib/compiler/implementation/script.dart
|
| index 04712db3a952c17594ae67dc15ac1e59a3b30c01..f70363058a99776a5e0bd483c9c638613a050bf5 100644
|
| --- a/dart/lib/compiler/implementation/script.dart
|
| +++ b/dart/lib/compiler/implementation/script.dart
|
| @@ -10,6 +10,6 @@ class Script {
|
| final Uri uri;
|
| Script(this.uri, this.file);
|
|
|
| - String get text() => (file === null) ? null : file.text;
|
| - String get name() => (file === null) ? null : file.filename;
|
| + String get text => (file === null) ? null : file.text;
|
| + String get name => (file === null) ? null : file.filename;
|
| }
|
|
|