| Index: tests/compiler/dart2js/type_substitution_test.dart
|
| diff --git a/tests/compiler/dart2js/type_substitution_test.dart b/tests/compiler/dart2js/type_substitution_test.dart
|
| index 4a576dc47656a62ab51ebd9e159786983c250a1e..e54b628447834deb523ffb17a4956e5f0330a7d6 100644
|
| --- a/tests/compiler/dart2js/type_substitution_test.dart
|
| +++ b/tests/compiler/dart2js/type_substitution_test.dart
|
| @@ -7,19 +7,7 @@ library type_substitution_test;
|
| import '../../../sdk/lib/_internal/compiler/implementation/dart_types.dart';
|
| import "compiler_helper.dart";
|
| import "parser_helper.dart";
|
| -
|
| -Element getElement(compiler, String name) {
|
| - var element = findElement(compiler, name);
|
| - Expect.isNotNull(element);
|
| - if (identical(element.kind, ElementKind.CLASS)) {
|
| - element.ensureResolved(compiler);
|
| - }
|
| - return element;
|
| -}
|
| -
|
| -DartType getElementType(compiler, String name) {
|
| - return getElement(compiler, name).computeType(compiler);
|
| -}
|
| +import "type_test_helper.dart";
|
|
|
| DartType getType(compiler, String name) {
|
| var clazz = findElement(compiler, "Class");
|
| @@ -58,46 +46,39 @@ void main() {
|
| testTypeSubstitution();
|
| }
|
|
|
| -InterfaceType instantiate(ClassElement element, List<DartType> arguments) {
|
| - return new InterfaceType(element, new Link<DartType>.fromList(arguments));
|
| -}
|
| -
|
| void testAsInstanceOf() {
|
| - var uri = new Uri.fromComponents(scheme: 'source');
|
| - MockCompiler compiler = compilerFor('''
|
| - main() {}
|
| + var env = new TypeEnvironment('''
|
| class A<T> {}
|
| class B<T> {}
|
| class C<T> extends A<T> {}
|
| class D<T> extends A<int> {}
|
| class E<T> extends A<A<T>> {}
|
| - class F<T, U> extends B<F<T, String>> implements A<F<B<U>, int>> {}''',
|
| - uri);
|
| - compiler.runCompiler(uri);
|
| -
|
| - ClassElement A = getElement(compiler, "A");
|
| - ClassElement B = getElement(compiler, "B");
|
| - ClassElement C = getElement(compiler, "C");
|
| - ClassElement D = getElement(compiler, "D");
|
| - ClassElement E = getElement(compiler, "E");
|
| - ClassElement F = getElement(compiler, "F");
|
| -
|
| - DartType numType = compiler.numClass.computeType(compiler);
|
| - DartType intType = compiler.intClass.computeType(compiler);
|
| - DartType stringType = compiler.stringClass.computeType(compiler);
|
| -
|
| - DartType C_int = instantiate(C, [intType]);
|
| + class F<T, U> extends B<F<T, String>> implements A<F<B<U>, int>> {}''');
|
| + var compiler = env.compiler;
|
| +
|
| + ClassElement A = env.getElement("A");
|
| + ClassElement B = env.getElement("B");
|
| + ClassElement C = env.getElement("C");
|
| + ClassElement D = env.getElement("D");
|
| + ClassElement E = env.getElement("E");
|
| + ClassElement F = env.getElement("F");
|
| +
|
| + DartType numType = env['num'];
|
| + DartType intType = env['int'];
|
| + DartType stringType = env['String'];
|
| +
|
| + InterfaceType C_int = instantiate(C, [intType]);
|
| Expect.equals(instantiate(C, [intType]), C_int);
|
| Expect.equals(instantiate(A, [intType]), C_int.asInstanceOf(A));
|
|
|
| - DartType D_int = instantiate(D, [stringType]);
|
| + InterfaceType D_int = instantiate(D, [stringType]);
|
| Expect.equals(instantiate(A, [intType]), D_int.asInstanceOf(A));
|
|
|
| - DartType E_int = instantiate(E, [intType]);
|
| + InterfaceType E_int = instantiate(E, [intType]);
|
| Expect.equals(instantiate(A, [instantiate(A, [intType])]),
|
| E_int.asInstanceOf(A));
|
|
|
| - DartType F_int_string = instantiate(F, [intType, stringType]);
|
| + InterfaceType F_int_string = instantiate(F, [intType, stringType]);
|
| Expect.equals(instantiate(B, [instantiate(F, [intType, stringType])]),
|
| F_int_string.asInstanceOf(B));
|
| Expect.equals(instantiate(A, [instantiate(F, [instantiate(B, [stringType]),
|
| @@ -119,9 +100,7 @@ bool testSubstitution(compiler, arguments, parameters,
|
| }
|
|
|
| void testTypeSubstitution() {
|
| - var uri = new Uri.fromComponents(scheme: 'source');
|
| - var compiler = compilerFor(
|
| - r"""
|
| + var env = new TypeEnvironment(r"""
|
| typedef void Typedef1<X,Y>(X x1, Y y2);
|
| typedef void Typedef2<Z>(Z z1);
|
|
|
| @@ -173,13 +152,10 @@ void testTypeSubstitution() {
|
| void Typedef1e(Typedef2<S> a) {}
|
| void Typedef2e(Typedef2<String> b) {}
|
| }
|
| + """);
|
| + var compiler = env.compiler;
|
|
|
| - void main() {}
|
| - """,
|
| - uri);
|
| - compiler.runCompiler(uri);
|
| -
|
| - DartType Class_T_S = getElementType(compiler, "Class");
|
| + InterfaceType Class_T_S = env["Class"];
|
| Expect.isNotNull(Class_T_S);
|
| Expect.identical(Class_T_S.kind, TypeKind.INTERFACE);
|
| Expect.equals(2, length(Class_T_S.typeArguments));
|
| @@ -192,11 +168,11 @@ void testTypeSubstitution() {
|
| Expect.isNotNull(S);
|
| Expect.identical(S.kind, TypeKind.TYPE_VARIABLE);
|
|
|
| - DartType intType = getType(compiler, "int1");
|
| + DartType intType = env['int'];//getType(compiler, "int1");
|
| Expect.isNotNull(intType);
|
| Expect.identical(intType.kind, TypeKind.INTERFACE);
|
|
|
| - DartType StringType = getType(compiler, "String1");
|
| + DartType StringType = env['String'];//getType(compiler, "String1");
|
| Expect.isNotNull(StringType);
|
| Expect.identical(StringType.kind, TypeKind.INTERFACE);
|
|
|
|
|