Index: pkg/fletchc/lib/fletch_compiler.dart |
diff --git a/pkg/fletchc/lib/fletch_compiler.dart b/pkg/fletchc/lib/fletch_compiler.dart |
index a0b6efc6b6d2a83d31b321d3f14b4f002d92b2e9..1a3e57cfb3219312376e8b37c123c23094b3fef1 100644 |
--- a/pkg/fletchc/lib/fletch_compiler.dart |
+++ b/pkg/fletchc/lib/fletch_compiler.dart |
@@ -34,7 +34,8 @@ import 'src/fletch_native_descriptor.dart' show |
import 'src/fletch_backend.dart' show |
FletchBackend; |
-import 'package:compiler/src/apiimpl.dart' as apiimpl; |
+import 'package:compiler/src/apiimpl.dart' show |
+ CompilerImpl; |
import 'src/fletch_compiler_implementation.dart' show |
FletchCompilerImplementation, |
@@ -122,7 +123,7 @@ class FletchCompiler { |
options.add("--categories=$categoriesOptionValue"); |
} |
- final bool isVerbose = apiimpl.CompilerImpl.hasOption(options, '--verbose'); |
+ final bool isVerbose = CompilerImpl.hasOption(options, '--verbose'); |
if (provider == null) { |
provider = new CompilerSourceFileProvider() |