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

Unified Diff: tests/compiler/dart2js/inference/inference_test.dart

Issue 3007783004: Handle switch continue (Closed)
Patch Set: Updated cf. comment Created 3 years, 4 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
Index: tests/compiler/dart2js/inference/inference_test.dart
diff --git a/tests/compiler/dart2js/inference/inference_test.dart b/tests/compiler/dart2js/inference/inference_test.dart
index 16f684062cf0fe7678a6421581d4ba4872aa1e98..96ec95ca13b5c8be12c3bbc76c4157e82cacc76a 100644
--- a/tests/compiler/dart2js/inference/inference_test.dart
+++ b/tests/compiler/dart2js/inference/inference_test.dart
@@ -12,11 +12,11 @@ const List<String> skipforKernel = const <String>[
'super_set.dart',
];
-main() {
+main(List<String> args) {
asyncTest(() async {
Directory dataDir = new Directory.fromUri(Platform.script.resolve('data'));
await checkTests(
dataDir, computeMemberAstTypeMasks, computeMemberIrTypeMasks,
- skipForKernel: skipforKernel);
+ args: args, skipForKernel: skipforKernel);
});
}
« no previous file with comments | « tests/compiler/dart2js/equivalence/id_equivalence_test.dart ('k') | tests/compiler/dart2js/jumps/data/switch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698