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

Side by Side Diff: pkg/analyzer/bin/coverage.dart

Issue 45573002: Rename analyzer_experimental to analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks before publishing. Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « pkg/analyzer/bin/analyzer.dart ('k') | pkg/analyzer/bin/formatter.dart » ('j') | 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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 runtime.coverage; 5 library runtime.coverage;
6 6
7 import 'dart:io'; 7 import 'dart:io';
8 8
9 import 'package:args/args.dart'; 9 import 'package:args/args.dart';
10 10
11 import 'package:analyzer_experimental/src/services/runtime/log.dart' as log; 11 import 'package:analyzer/src/services/runtime/log.dart' as log;
12 import 'package:analyzer_experimental/src/services/runtime/coverage/coverage_imp l.dart'; 12 import 'package:analyzer/src/services/runtime/coverage/coverage_impl.dart';
13 13
14 14
15 main(args) { 15 main(args) {
16 ArgResults options; 16 ArgResults options;
17 try { 17 try {
18 options = _argParser.parse(args); 18 options = _argParser.parse(args);
19 } on FormatException catch (e) { 19 } on FormatException catch (e) {
20 print(e.message); 20 print(e.message);
21 print('Run "coverage --help" to see available options.'); 21 print('Run "coverage --help" to see available options.');
22 exit(ERROR); 22 exit(ERROR);
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 printUsage([var description = 'Code coverage tool for Dart.']) { 80 printUsage([var description = 'Code coverage tool for Dart.']) {
81 var usage = _argParser.getUsage(); 81 var usage = _argParser.getUsage();
82 print('$description\n'); 82 print('$description\n');
83 print('Usage: coverage [options] <script>\n'); 83 print('Usage: coverage [options] <script>\n');
84 print('$usage\n'); 84 print('$usage\n');
85 } 85 }
86 86
87 87
88 /// General error code. 88 /// General error code.
89 const ERROR = 1; 89 const ERROR = 1;
OLDNEW
« no previous file with comments | « pkg/analyzer/bin/analyzer.dart ('k') | pkg/analyzer/bin/formatter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698