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

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

Issue 770633003: tools: removed unused members, tiny cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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: tools/testing/dart/test_runner.dart
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
index bf28d11163a887a959b5171c19e510d18088205b..30c4a861e798d791ec64cb4ff8e4f3bc31c8abd2 100644
--- a/tools/testing/dart/test_runner.dart
+++ b/tools/testing/dart/test_runner.dart
@@ -394,7 +394,6 @@ class CleanDirectoryCopyCommand extends ScriptCommand {
Future<ScriptCommandOutputImpl> run() {
var watch = new Stopwatch()..start();
- var source = new io.Directory(_sourceDirectory);
var destination = new io.Directory(_destinationDirectory);
return destination.exists().then((bool exists) {
@@ -1453,8 +1452,6 @@ class AnalysisCommandOutputImpl extends CommandOutputImpl {
}
void parseAnalyzerOutput(List<String> outErrors, List<String> outWarnings) {
- AnalysisCommand analysisCommand = command;
-
// Parse a line delimited by the | character using \ as an escape charager
// like: FOO|BAR|FOO\|BAR|FOO\\BAZ as 4 fields: FOO BAR FOO|BAR FOO\BAZ
List<String> splitMachineError(String line) {
@@ -2770,7 +2767,6 @@ class TestCaseCompleter {
class ProcessQueue {
Map _globalConfiguration;
- bool _listTests;
Function _allDone;
final dgraph.Graph _graph = new dgraph.Graph();
List<EventListener> _eventListener;
@@ -2783,7 +2779,6 @@ class ProcessQueue {
this._eventListener,
this._allDone,
[bool verbose = false,
- this._listTests = false,
String recordingOutputFile,
String recordedInputFile]) {
void setupForListing(TestCaseEnqueuer testCaseEnqueuer) {

Powered by Google App Engine
This is Rietveld 408576698