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

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

Issue 2863253002: Tighten up a bunch of types in test.dart. (Closed)
Patch Set: Merge branch 'master' into types-for-test 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/testing/dart/browser_controller.dart ('k') | tools/testing/dart/compiler_configuration.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/co19_test.dart
diff --git a/tools/testing/dart/co19_test.dart b/tools/testing/dart/co19_test.dart
index d847033dbb3067043c1c8bba8b0db27976b500a4..5cbcddaf36b2fef12ab01ea3b1c90d25a6b9c0e4 100644
--- a/tools/testing/dart/co19_test.dart
+++ b/tools/testing/dart/co19_test.dart
@@ -60,9 +60,9 @@ const List<List<String>> COMMAND_LINES = const <List<String>>[
void main(List<String> args) {
TestUtils.setDartDirUri(Platform.script.resolve('../../..'));
var optionsParser = new TestOptionsParser();
- List<Map> configurations = <Map>[];
+ var configurations = <Map>[];
for (var commandLine in COMMAND_LINES) {
- List arguments = <String>[];
+ var arguments = <String>[];
arguments.addAll(COMMON_ARGUMENTS);
arguments.addAll(args);
arguments.addAll(commandLine);
« no previous file with comments | « tools/testing/dart/browser_controller.dart ('k') | tools/testing/dart/compiler_configuration.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698