| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:io'; | 5 import 'dart:io'; |
| 6 import 'package:async_helper/async_helper.dart'; | 6 import 'package:async_helper/async_helper.dart'; |
| 7 import '../equivalence/id_equivalence_helper.dart'; | 7 import '../equivalence/id_equivalence_helper.dart'; |
| 8 import 'inference_test_helper.dart'; | 8 import 'inference_test_helper.dart'; |
| 9 | 9 |
| 10 const List<String> skipforKernel = const <String>[ | 10 const List<String> skipforKernel = const <String>[ |
| 11 'super_get.dart', | 11 'super_get.dart', |
| 12 'super_set.dart', | 12 'super_set.dart', |
| 13 ]; | 13 ]; |
| 14 | 14 |
| 15 main() { | 15 main(List<String> args) { |
| 16 asyncTest(() async { | 16 asyncTest(() async { |
| 17 Directory dataDir = new Directory.fromUri(Platform.script.resolve('data')); | 17 Directory dataDir = new Directory.fromUri(Platform.script.resolve('data')); |
| 18 await checkTests( | 18 await checkTests( |
| 19 dataDir, computeMemberAstTypeMasks, computeMemberIrTypeMasks, | 19 dataDir, computeMemberAstTypeMasks, computeMemberIrTypeMasks, |
| 20 skipForKernel: skipforKernel); | 20 args: args, skipForKernel: skipforKernel); |
| 21 }); | 21 }); |
| 22 } | 22 } |
| OLD | NEW |