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 library flatten_test; | 5 library flatten_test; |
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 'type_test_helper.dart'; | 9 import 'type_test_helper.dart'; |
10 import 'package:compiler/src/elements/resolution_types.dart'; | 10 import 'package:compiler/src/elements/resolution_types.dart'; |
11 import "package:compiler/src/elements/elements.dart" show Element, ClassElement; | 11 import "package:compiler/src/elements/elements.dart" show ClassElement; |
12 | 12 |
13 void main() { | 13 void main() { |
14 asyncTest(() => TypeEnvironment.create(r""" | 14 asyncTest(() => TypeEnvironment.create(r""" |
15 abstract class F<T> implements Future<T> {} | 15 abstract class F<T> implements Future<T> {} |
16 abstract class G<T> implements Future<G<T>> {} | 16 abstract class G<T> implements Future<G<T>> {} |
17 abstract class H<T> implements Future<H<H<T>>> {} | 17 abstract class H<T> implements Future<H<H<T>>> {} |
18 """).then((env) { | 18 """).then((env) { |
19 void check( | 19 void check( |
20 ResolutionDartType T, ResolutionDartType expectedFlattenedType) { | 20 ResolutionDartType T, ResolutionDartType expectedFlattenedType) { |
21 ResolutionDartType flattenedType = env.flatten(T); | 21 ResolutionDartType flattenedType = env.flatten(T); |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 // flatten(Future<F<int>>) = int | 74 // flatten(Future<F<int>>) = int |
75 check(instantiate(Future_, [F_int]), int_); | 75 check(instantiate(Future_, [F_int]), int_); |
76 | 76 |
77 // flatten(Future<G<int>>) = int | 77 // flatten(Future<G<int>>) = int |
78 check(instantiate(Future_, [G_int]), G_int); | 78 check(instantiate(Future_, [G_int]), G_int); |
79 | 79 |
80 // flatten(Future<H<int>>) = int | 80 // flatten(Future<H<int>>) = int |
81 check(instantiate(Future_, [H_int]), H_H_int); | 81 check(instantiate(Future_, [H_int]), H_H_int); |
82 })); | 82 })); |
83 } | 83 } |
OLD | NEW |