Chromium Code Reviews| Index: bin/dartdevc.dart |
| diff --git a/bin/dartdevc.dart b/bin/dartdevc.dart |
| index 0ee480ac83faca90afbbc6f5ab5cc0e827c6ac7f..e06f46add06c613d8a9af0a57b25c19a945c87a6 100755 |
| --- a/bin/dartdevc.dart |
| +++ b/bin/dartdevc.dart |
| @@ -38,12 +38,14 @@ |
| import 'dart:io'; |
| import 'package:args/command_runner.dart'; |
| import 'package:dev_compiler/src/compiler/command.dart'; |
| +import 'commands/global_compile.dart'; |
|
Jennifer Messerly
2016/04/18 21:45:45
if we're going to keep this command or something l
|
| main(List<String> args) async { |
| args = _preprocessArgs(args); |
| var runner = new CommandRunner('dartdevc', 'Dart Development Compiler'); |
| runner.addCommand(new CompileCommand()); |
| + runner.addCommand(new GlobalCommand()); |
| try { |
| await runner.run(args); |
| } catch (e, s) { |