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

Side by Side Diff: pkg/analyzer_cli/lib/src/options.dart

Issue 2840703002: Refactoring analyzer_cli for code hygiene. (Closed)
Patch Set: revert some of the file name changes Created 3 years, 7 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 unified diff | Download patch
« no previous file with comments | « pkg/analyzer_cli/lib/src/driver.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library analyzer_cli.src.options;
6
7 import 'dart:io'; 5 import 'dart:io';
8 6
9 import 'package:analyzer/file_system/physical_file_system.dart'; 7 import 'package:analyzer/file_system/physical_file_system.dart';
10 import 'package:analyzer/src/command_line/arguments.dart'; 8 import 'package:analyzer/src/command_line/arguments.dart';
11 import 'package:analyzer/src/context/builder.dart'; 9 import 'package:analyzer/src/context/builder.dart';
12 import 'package:analyzer_cli/src/ansi.dart' as ansi; 10 import 'package:analyzer_cli/src/ansi.dart' as ansi;
13 import 'package:analyzer_cli/src/driver.dart'; 11 import 'package:analyzer_cli/src/driver.dart';
14 import 'package:args/args.dart'; 12 import 'package:args/args.dart';
15 import 'package:cli_util/cli_util.dart' show getSdkDir; 13 import 'package:cli_util/cli_util.dart' show getSdkDir;
16 14
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 'Usage: $_binaryName [options...] <directory or list of files>'); 557 'Usage: $_binaryName [options...] <directory or list of files>');
560 errorSink.writeln(''); 558 errorSink.writeln('');
561 errorSink.writeln(parser.usage); 559 errorSink.writeln(parser.usage);
562 errorSink.writeln(''); 560 errorSink.writeln('');
563 errorSink.writeln(''' 561 errorSink.writeln('''
564 Run "dartanalyzer -h -v" for verbose help output, including less commonly used o ptions. 562 Run "dartanalyzer -h -v" for verbose help output, including less commonly used o ptions.
565 For more information, see http://www.dartlang.org/tools/analyzer. 563 For more information, see http://www.dartlang.org/tools/analyzer.
566 '''); 564 ''');
567 } 565 }
568 } 566 }
OLDNEW
« no previous file with comments | « pkg/analyzer_cli/lib/src/driver.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698