Chromium Code Reviews| Index: pkg/analysis_server/lib/driver.dart |
| diff --git a/pkg/analysis_server/lib/driver.dart b/pkg/analysis_server/lib/driver.dart |
| index 560924df03cbb46d3c0620cbb565127a4826729b..505120f228661fa05132213c9debba0b2bf7ecf0 100644 |
| --- a/pkg/analysis_server/lib/driver.dart |
| +++ b/pkg/analysis_server/lib/driver.dart |
| @@ -4,6 +4,7 @@ |
| library driver; |
| +import 'dart:async'; |
|
Brian Wilkerson
2014/11/20 21:53:40
Why did we need to add this import? (The only othe
|
| import 'dart:io'; |
| import 'package:analysis_server/http_server.dart'; |
| @@ -91,7 +92,8 @@ class Driver { |
| parser.addOption(SDK_OPTION, help: "[path] the path to the sdk"); |
| parser.addFlag( |
| NO_ERROR_NOTIFICATION, |
| - help: "disable sending all analysis error notifications to the server (not yet implemented)", |
| + help: |
| + "disable sending all analysis error notifications to the server (not yet implemented)", |
| defaultsTo: false, |
| negatable: false); |