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

Unified Diff: tools/testing/dart/package_testing_support.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/multitest.dart ('k') | tools/testing/dart/path.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/package_testing_support.dart
diff --git a/tools/testing/dart/package_testing_support.dart b/tools/testing/dart/package_testing_support.dart
index d783895112c7280e58c5d8d4d630211a839ac7bd..d470663538494cd9cbbbbdcba19f6c9d3a0ec86d 100644
--- a/tools/testing/dart/package_testing_support.dart
+++ b/tools/testing/dart/package_testing_support.dart
@@ -10,10 +10,10 @@ import 'test_options.dart' show TestOptionsParser;
import 'test_suite.dart' show TestUtils;
-main(List<String> arguments) {
+void main(List<String> arguments) {
TestUtils.setDartDirUri(Uri.base);
- List<Map> configurations = <Map>[];
- for (String argument in arguments) {
+ var configurations = <Map>[];
+ for (var argument in arguments) {
configurations.addAll(new TestOptionsParser().parse(argument.split(" ")));
}
testConfigurations(configurations);
« no previous file with comments | « tools/testing/dart/multitest.dart ('k') | tools/testing/dart/path.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698