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

Unified Diff: pkg/front_end/lib/src/fasta/compiler_command_line.dart

Issue 2718113003: Run dartfmt on pkg/front_end/lib. (Closed)
Patch Set: Rerun after merging. Created 3 years, 10 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: 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);
« no previous file with comments | « pkg/front_end/lib/src/fasta/compile_platform_dartk.dart ('k') | pkg/front_end/lib/src/fasta/compiler_context.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698