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 compilerFor; | 9 import 'memory_compiler.dart' show compilerFor; |
10 import 'compiler_helper.dart' show findElement; | 10 import 'compiler_helper.dart' show findElement; |
(...skipping 10 matching lines...) Expand all Loading... |
21 } | 21 } |
22 """ | 22 """ |
23 }; | 23 }; |
24 | 24 |
25 void main() { | 25 void main() { |
26 var compiler = compilerFor(MEMORY_SOURCE_FILES); | 26 var compiler = compilerFor(MEMORY_SOURCE_FILES); |
27 asyncTest(() => compiler.runCompiler(Uri.parse('memory:main.dart')).then((_) { | 27 asyncTest(() => compiler.runCompiler(Uri.parse('memory:main.dart')).then((_) { |
28 var element = findElement(compiler, 'field'); | 28 var element = findElement(compiler, 'field'); |
29 var typesTask = compiler.typesTask; | 29 var typesTask = compiler.typesTask; |
30 var typesInferrer = typesTask.typesInferrer; | 30 var typesInferrer = typesTask.typesInferrer; |
31 Expect.equals(typesTask.intType, | 31 Expect.equals(typesTask.uint31Type, |
32 typesInferrer.getTypeOfElement(element).simplify(compiler), | 32 typesInferrer.getTypeOfElement(element).simplify(compiler), |
33 'field'); | 33 'field'); |
34 })); | 34 })); |
35 } | 35 } |
OLD | NEW |