| Index: tests/compiler/dart2js/type_order_test.dart
|
| diff --git a/tests/compiler/dart2js/type_order_test.dart b/tests/compiler/dart2js/type_order_test.dart
|
| index e4faa0113a4175d7baedfc426a8a979548ba77cb..5cc91785c5c2664d56e50323183fd0d2c7f263aa 100644
|
| --- a/tests/compiler/dart2js/type_order_test.dart
|
| +++ b/tests/compiler/dart2js/type_order_test.dart
|
| @@ -44,15 +44,15 @@ void main() {
|
| InterfaceType A_X_Y = add(instantiate(A, [X, Y]));
|
| InterfaceType A_Y_X = add(instantiate(A, [Y, X]));
|
|
|
| - TypedefType B_this = add(B.computeType(env.compiler));
|
| + TypedefType B_this = add(B.computeType(env.compiler.resolution));
|
| TypedefType B_raw = add(B.rawType);
|
| TypeVariableType BT = add(B_this.typeArguments[0]);
|
| TypeVariableType BS = add(B_this.typeArguments[1]);
|
| FunctionType B_this_alias = add(B.alias);
|
| TypedefType B_X_Y = add(instantiate(B, [X, Y]));
|
| - FunctionType B_X_Y_alias = add(B_X_Y.unalias(env.compiler));
|
| + FunctionType B_X_Y_alias = add(B_X_Y.unalias(env.compiler.resolution));
|
| TypedefType B_Y_X = add(instantiate(B, [Y, X]));
|
| - FunctionType B_Y_X_alias = add(B_Y_X.unalias(env.compiler));
|
| + FunctionType B_Y_X_alias = add(B_Y_X.unalias(env.compiler.resolution));
|
|
|
| InterfaceType C_this = add(C.thisType);
|
| InterfaceType C_raw = add(C.rawType);
|
|
|