| Index: pkg/front_end/lib/src/fasta/compiler_command_line.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/compiler_command_line.dart b/pkg/front_end/lib/src/fasta/compiler_command_line.dart
|
| index 8a328d6d26670d4c30c00d241e8b35e2a7005a56..fedd73308f7828d116eda1d1c7ccefaa37385265 100644
|
| --- a/pkg/front_end/lib/src/fasta/compiler_command_line.dart
|
| +++ b/pkg/front_end/lib/src/fasta/compiler_command_line.dart
|
| @@ -4,15 +4,11 @@
|
|
|
| library fasta.compiler_command_line;
|
|
|
| -import 'dart:io' show
|
| - exit;
|
| +import 'dart:io' show exit;
|
|
|
| -import 'command_line.dart' show
|
| - CommandLine,
|
| - argumentError;
|
| +import 'command_line.dart' show CommandLine, argumentError;
|
|
|
| -import 'compiler_context.dart' show
|
| - CompilerContext;
|
| +import 'compiler_context.dart' show CompilerContext;
|
|
|
| const Map<String, dynamic> optionSpecification = const <String, dynamic>{
|
| "--compile-sdk": Uri,
|
| @@ -28,7 +24,8 @@ class CompilerCommandLine extends CommandLine {
|
|
|
| CompilerCommandLine(String programName, List<String> arguments)
|
| : programName = programName,
|
| - super(arguments, specification: optionSpecification,
|
| + super(arguments,
|
| + specification: optionSpecification,
|
| usage: computeUsage(programName, false));
|
|
|
| bool get verify => options.containsKey("--verify");
|
| @@ -119,8 +116,7 @@ String computeUsage(String programName, bool verbose) {
|
| break;
|
|
|
| case "compile_platform":
|
| - summary =
|
| - "Compiles Dart SDK platform to the Dill/Kernel IR format.";
|
| + summary = "Compiles Dart SDK platform to the Dill/Kernel IR format.";
|
| basicUsage = "Usage: $programName [options] patched_sdk output\n";
|
| }
|
| StringBuffer sb = new StringBuffer(basicUsage);
|
|
|