OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // Test that final fields in @MirrorsUsed are still inferred. | 5 // Test that final fields in @MirrorsUsed are still inferred. |
6 | 6 |
7 import 'package:expect/expect.dart'; | 7 import 'package:expect/expect.dart'; |
8 import "package:async_helper/async_helper.dart"; | 8 import "package:async_helper/async_helper.dart"; |
9 import 'memory_compiler.dart' show runCompiler; | 9 import 'memory_compiler.dart' show runCompiler; |
10 import 'compiler_helper.dart' show findElement; | 10 import 'compiler_helper.dart' show findElement; |
11 import 'type_mask_test_helper.dart'; | 11 import 'type_mask_test_helper.dart'; |
12 | 12 |
13 const MEMORY_SOURCE_FILES = const <String, String> { | 13 const MEMORY_SOURCE_FILES = const <String, String>{ |
14 'main.dart': """ | 14 'main.dart': """ |
15 @MirrorsUsed(targets: 'field') | 15 @MirrorsUsed(targets: 'field') |
16 import 'dart:mirrors'; | 16 import 'dart:mirrors'; |
17 | 17 |
18 const field = 42; | 18 const field = 42; |
19 | 19 |
20 main() { | 20 main() { |
21 return field; | 21 return field; |
22 } | 22 } |
23 """ | 23 """ |
24 }; | 24 }; |
25 | 25 |
26 void main() { | 26 void main() { |
27 asyncTest(() async { | 27 asyncTest(() async { |
28 var result = await runCompiler(memorySourceFiles: MEMORY_SOURCE_FILES); | 28 var result = await runCompiler(memorySourceFiles: MEMORY_SOURCE_FILES); |
29 var compiler = result.compiler; | 29 var compiler = result.compiler; |
30 var element = findElement(compiler, 'field'); | 30 var element = findElement(compiler, 'field'); |
31 var commonMasks = compiler.commonMasks; | 31 var commonMasks = compiler.commonMasks; |
32 var typesInferrer = compiler.globalInference.typesInferrer; | 32 var typesInferrer = compiler.globalInference.typesInferrer; |
33 Expect.equals(commonMasks.uint31Type, | 33 Expect.equals(commonMasks.uint31Type, |
34 simplify(typesInferrer.getTypeOfElement(element), compiler), | 34 simplify(typesInferrer.getTypeOfElement(element), compiler), 'field'); |
35 'field'); | |
36 }); | 35 }); |
37 } | 36 } |
OLD | NEW |