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 // We used to always nullify the element type of a list we are tracing in | 5 // We used to always nullify the element type of a list we are tracing in |
6 // the presence of a fixed length list constructor call. | 6 // the presence of a fixed length list constructor call. |
7 | 7 |
8 import 'package:expect/expect.dart'; | 8 import 'package:expect/expect.dart'; |
9 import "package:async_helper/async_helper.dart"; | 9 import "package:async_helper/async_helper.dart"; |
10 import 'package:compiler/src/types/types.dart' show ContainerTypeMask; | 10 import 'package:compiler/src/types/types.dart' show ContainerTypeMask; |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 void main() { | 25 void main() { |
26 Uri uri = new Uri(scheme: 'source'); | 26 Uri uri = new Uri(scheme: 'source'); |
27 var compiler = compilerFor(TEST, uri); | 27 var compiler = compilerFor(TEST, uri); |
28 asyncTest(() => compiler.run(uri).then((_) { | 28 asyncTest(() => compiler.run(uri).then((_) { |
29 var typesInferrer = compiler.globalInference.typesInferrerInternal; | 29 var typesInferrer = compiler.globalInference.typesInferrerInternal; |
30 var closedWorld = typesInferrer.closedWorld; | 30 var closedWorld = typesInferrer.closedWorld; |
31 | 31 |
32 checkType(String name, type) { | 32 checkType(String name, type) { |
33 var element = findElement(compiler, name); | 33 var element = findElement(compiler, name); |
34 ContainerTypeMask mask = typesInferrer.getTypeOfElement(element); | 34 ContainerTypeMask mask = typesInferrer.getTypeOfMember(element); |
35 Expect.equals(type, simplify(mask.elementType, closedWorld), name); | 35 Expect.equals(type, simplify(mask.elementType, closedWorld), name); |
36 } | 36 } |
37 | 37 |
38 var interceptorType = | 38 var interceptorType = |
39 typesInferrer.closedWorld.commonMasks.interceptorType; | 39 typesInferrer.closedWorld.commonMasks.interceptorType; |
40 checkType('myList', interceptorType); | 40 checkType('myList', interceptorType); |
41 })); | 41 })); |
42 } | 42 } |
OLD | NEW |