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 5cc91785c5c2664d56e50323183fd0d2c7f263aa..dff24fc7dd6b818c7e020dfc9d07e717069182f9 100644 |
--- a/tests/compiler/dart2js/type_order_test.dart |
+++ b/tests/compiler/dart2js/type_order_test.dart |
@@ -50,9 +50,9 @@ void main() { |
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.resolution)); |
+ FunctionType B_X_Y_alias = add(B_X_Y.unaliased); |
TypedefType B_Y_X = add(instantiate(B, [Y, X])); |
- FunctionType B_Y_X_alias = add(B_Y_X.unalias(env.compiler.resolution)); |
+ FunctionType B_Y_X_alias = add(B_Y_X.unaliased); |
InterfaceType C_this = add(C.thisType); |
InterfaceType C_raw = add(C.rawType); |