Index: pkg/compiler/lib/src/apiimpl.dart |
diff --git a/pkg/compiler/lib/src/apiimpl.dart b/pkg/compiler/lib/src/apiimpl.dart |
index dbff8dfefb0bb81bb8d3804c509280c33506afcd..fc92457466981e395bde54e00941a30cef90ba5d 100644 |
--- a/pkg/compiler/lib/src/apiimpl.dart |
+++ b/pkg/compiler/lib/src/apiimpl.dart |
@@ -381,8 +381,7 @@ class _Environment implements Environment { |
// Private libraries are not exposed to the users. |
if (libraryName.startsWith("_")) return null; |
- Uri libraryUri = |
- compiler.resolvedUriTranslator.sdkLibraries[libraryName]; |
+ Uri libraryUri = compiler.resolvedUriTranslator.sdkLibraries[libraryName]; |
if (libraryUri != null && libraryUri.scheme != "unsupported") { |
// Dart2js always "supports" importing 'dart:mirrors' but will abort |
// the compilation at a later point if the backend doesn't support |