Index: pkg/compiler/lib/src/script.dart |
diff --git a/pkg/compiler/lib/src/script.dart b/pkg/compiler/lib/src/script.dart |
index f8278ab248923c5323a2fde94ca95f221c56c96b..403776b74d9db47a646f0873a2d57c97674d4117 100644 |
--- a/pkg/compiler/lib/src/script.dart |
+++ b/pkg/compiler/lib/src/script.dart |
@@ -16,7 +16,6 @@ class Script { |
*/ |
final Uri readableUri; |
- |
/** |
* The resource URI from which this script was loaded. |
* |
@@ -27,14 +26,13 @@ class Script { |
/// This script was synthesized. |
final bool isSynthesized; |
- Script(this.readableUri, this.resourceUri, this.file) |
- : isSynthesized = false; |
+ Script(this.readableUri, this.resourceUri, this.file) : isSynthesized = false; |
Script.synthetic(Uri uri) |
: readableUri = uri, |
resourceUri = uri, |
- file = new StringSourceFile.fromUri(uri, |
- "// Synthetic source file generated for '$uri'."), |
+ file = new StringSourceFile.fromUri( |
+ uri, "// Synthetic source file generated for '$uri'."), |
isSynthesized = true; |
String get text => (file == null) ? null : file.slowText(); |