Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Unified Diff: bin/dartdevc.dart

Issue 1900813002: Global compile option (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698