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 // Partial test that the closed world computed from [WorldImpact]s derived from | 5 // Partial test that the closed world computed from [WorldImpact]s derived from |
6 // kernel is equivalent to the original computed from resolution. | 6 // kernel is equivalent to the original computed from resolution. |
7 library dart2js.kernel.compile_from_dill_test; | 7 library dart2js.kernel.compile_from_dill_test; |
8 | 8 |
9 import 'dart:async'; | 9 import 'dart:async'; |
10 import 'dart:io'; | 10 import 'dart:io'; |
(...skipping 17 matching lines...) Expand all Loading... |
28 import '../equivalence/check_helpers.dart'; | 28 import '../equivalence/check_helpers.dart'; |
29 import '../serialization/helper.dart'; | 29 import '../serialization/helper.dart'; |
30 import 'test_helpers.dart'; | 30 import 'test_helpers.dart'; |
31 | 31 |
32 import 'compiler_helper.dart'; | 32 import 'compiler_helper.dart'; |
33 | 33 |
34 const SOURCE = const { | 34 const SOURCE = const { |
35 'main.dart': ''' | 35 'main.dart': ''' |
36 foo() => 1; | 36 foo() => 1; |
37 bar(a) => !a; | 37 bar(a) => !a; |
| 38 class Class {} |
38 main() { | 39 main() { |
39 foo(); | 40 foo(); |
40 bar(true); | 41 bar(true); |
41 []; | 42 []; |
42 {}; | 43 {}; |
43 new Object(); | 44 new Object(); |
| 45 new Class(); |
44 var x = null; | 46 var x = null; |
45 return x; | 47 return x; |
46 } | 48 } |
47 ''' | 49 ''' |
48 }; | 50 }; |
49 | 51 |
50 main(List<String> args) { | 52 main(List<String> args) { |
51 asyncTest(() async { | 53 asyncTest(() async { |
52 await mainInternal(args); | 54 await mainInternal(args); |
53 }); | 55 }); |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 } | 168 } |
167 Map<String, BufferedOutputSink> map2 = collector2.outputMap[outputType]; | 169 Map<String, BufferedOutputSink> map2 = collector2.outputMap[outputType]; |
168 checkSets(map1.keys, map2.keys, 'output', equality); | 170 checkSets(map1.keys, map2.keys, 'output', equality); |
169 map1.forEach((String name, BufferedOutputSink output1) { | 171 map1.forEach((String name, BufferedOutputSink output1) { |
170 BufferedOutputSink output2 = map2[name]; | 172 BufferedOutputSink output2 = map2[name]; |
171 Expect.stringEquals(output1.text, output2.text); | 173 Expect.stringEquals(output1.text, output2.text); |
172 }); | 174 }); |
173 }); | 175 }); |
174 return ResultKind.success; | 176 return ResultKind.success; |
175 } | 177 } |
OLD | NEW |