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

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

Issue 210463002: Switch the command line Dart-based analyzer back to the synchronous API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 #!/usr/bin/env dart 1 #!/usr/bin/env dart
2 2
3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 6
7 /** The entry point for the analyzer. */ 7 /** The entry point for the analyzer. */
8 library analyzer; 8 library analyzer;
9 9
10 import 'dart:async'; 10 import 'dart:async';
11 import 'dart:convert'; 11 import 'dart:convert';
12 import 'dart:io'; 12 import 'dart:io';
13 13
14 import 'package:analyzer/src/analyzer_impl.dart'; 14 import 'package:analyzer/src/analyzer_impl.dart';
15 import 'package:analyzer/src/generated/engine.dart'; 15 import 'package:analyzer/src/generated/engine.dart';
16 import 'package:analyzer/src/generated/error.dart'; 16 import 'package:analyzer/src/generated/error.dart';
17 import 'package:analyzer/src/generated/java_core.dart' show JavaSystem; 17 import 'package:analyzer/src/generated/java_core.dart' show JavaSystem;
18 import 'package:analyzer/options.dart'; 18 import 'package:analyzer/options.dart';
19 19
20 void main(args) { 20 void main(args) {
21 CommandLineOptions options = CommandLineOptions.parse(args); 21 CommandLineOptions options = CommandLineOptions.parse(args);
22 if (options.shouldBatch) { 22 if (options.shouldBatch) {
23 BatchRunner.runAsBatch(args, (List<String> args) { 23 BatchRunner.runAsBatch(args, (List<String> args) {
24 CommandLineOptions options = CommandLineOptions.parse(args); 24 CommandLineOptions options = CommandLineOptions.parse(args);
25 return _runAnalyzer(options, false); 25 return _runAnalyzer(options, false);
26 }); 26 });
27 } else { 27 } else {
28 _runAnalyzer(options); 28 _runAnalyzer(options, false);
29 } 29 }
30 } 30 }
31 31
32 _runAnalyzer(CommandLineOptions options, [bool async = true]) { 32 _runAnalyzer(CommandLineOptions options, [bool async = true]) {
33 int startTime = JavaSystem.currentTimeMillis(); 33 int startTime = JavaSystem.currentTimeMillis();
34 if (!options.machineFormat) { 34 if (!options.machineFormat) {
35 stdout.writeln("Analyzing ${options.sourceFiles}..."); 35 stdout.writeln("Analyzing ${options.sourceFiles}...");
36 } 36 }
37 ErrorSeverity allResult = ErrorSeverity.NONE; 37 ErrorSeverity allResult = ErrorSeverity.NONE;
38 String sourcePath = options.sourceFiles[0]; 38 String sourcePath = options.sourceFiles[0];
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 stdout.writeln('>>> TEST $resultPassString ${stopwatch.elapsedMillisecon ds}ms'); 109 stdout.writeln('>>> TEST $resultPassString ${stopwatch.elapsedMillisecon ds}ms');
110 } catch (e, stackTrace) { 110 } catch (e, stackTrace) {
111 stderr.writeln(e); 111 stderr.writeln(e);
112 stderr.writeln(stackTrace); 112 stderr.writeln(stackTrace);
113 stderr.writeln('>>> EOF STDERR'); 113 stderr.writeln('>>> EOF STDERR');
114 stdout.writeln('>>> TEST CRASH'); 114 stdout.writeln('>>> TEST CRASH');
115 } 115 }
116 }); 116 });
117 } 117 }
118 } 118 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698