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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 12618010: Rename the name of the new analyzer jar file from new_analyzer.jar to (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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
« no previous file with comments | « tools/testing/dart/test_options.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_suite.dart
===================================================================
--- tools/testing/dart/test_suite.dart (revision 20939)
+++ tools/testing/dart/test_suite.dart (working copy)
@@ -140,7 +140,7 @@
var name;
switch (configuration['compiler']) {
case 'dartc':
- case 'new_analyzer':
+ case 'dartanalyzer':
name = executablePath;
break;
case 'dart2js':
@@ -181,8 +181,8 @@
return '$buildDir/dart$suffix';
case 'dartc':
return '$buildDir/analyzer/bin/dart_analyzer$suffix';
- case 'new_analyzer':
- return 'sdk/bin/analyzer$suffix';
+ case 'dartanalyzer':
+ return 'sdk/bin/dartanalyzer$suffix';
default:
throw "Unknown executable for: ${configuration['compiler']}";
}
@@ -781,7 +781,7 @@
case 'none':
case 'dartc':
- case 'new_analyzer':
+ case 'dartanalyzer':
var arguments = new List.from(vmOptions);
arguments.addAll(args);
return <Command>[new Command(dartShellFileName, arguments)];
@@ -1170,7 +1170,7 @@
case 'dart2dart':
return 'application/dart';
case 'dart2js':
- case 'new_analyzer':
+ case 'dartanalyzer':
case 'dartc':
return 'text/javascript';
default:
@@ -1864,7 +1864,7 @@
const ['d8', 'jsshell'].contains(runtime);
static bool isCommandLineAnalyzer(String compiler) =>
- compiler == 'dartc' || compiler == 'new_analyzer';
+ compiler == 'dartc' || compiler == 'dartanalyzer';
static String buildDir(Map configuration) {
// FIXME(kustermann,ricow): Our code assumes that the returned 'buildDir'
« no previous file with comments | « tools/testing/dart/test_options.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698