Index: sdk/lib/_internal/compiler/implementation/dart2js.dart |
diff --git a/sdk/lib/_internal/compiler/implementation/dart2js.dart b/sdk/lib/_internal/compiler/implementation/dart2js.dart |
index 62286a07529c38c2a4dd5c804a6ba73332ec3c3b..0e419b76fee8387e49a7eb5bde016a5a7e89affe 100644 |
--- a/sdk/lib/_internal/compiler/implementation/dart2js.dart |
+++ b/sdk/lib/_internal/compiler/implementation/dart2js.dart |
@@ -200,7 +200,7 @@ void compile(List<String> argv) { |
Future<String> provider(Uri uri) { |
if (uri.scheme != 'file') { |
- throw new ArgumentError(uri); |
+ throw new ArgumentError("Invalid uri '$uri'"); |
ahe
2013/01/24 10:00:57
How about: "Unknown scheme in uri '$uri'"
Johnni Winther
2013/01/24 13:04:59
Done.
|
} |
String source; |
try { |