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 main() { | 10 main() { |
11 asyncTest(() async { | 11 asyncTest(() async { |
12 Directory dataDir = new Directory.fromUri(Platform.script.resolve('data')); | 12 Directory dataDir = new Directory.fromUri(Platform.script.resolve('data')); |
13 await for (FileSystemEntity entity in dataDir.list()) { | 13 await for (FileSystemEntity entity in dataDir.list()) { |
14 print('Checking ${entity.uri}'); | 14 print('Checking ${entity.uri}'); |
15 String annotatedCode = await new File.fromUri(entity.uri).readAsString(); | 15 String annotatedCode = await new File.fromUri(entity.uri).readAsString(); |
16 await checkCode(annotatedCode, checkMemberAstTypeMasks); | 16 await checkCode( |
| 17 annotatedCode, computeMemberAstTypeMasks, compileFromSource); |
17 } | 18 } |
18 }); | 19 }); |
19 } | 20 } |
OLD | NEW |