| Index: tests/compiler/dart2js/simple_inferrer_postfix_prefix_test.dart
|
| ===================================================================
|
| --- tests/compiler/dart2js/simple_inferrer_postfix_prefix_test.dart (revision 23010)
|
| +++ tests/compiler/dart2js/simple_inferrer_postfix_prefix_test.dart (working copy)
|
| @@ -69,7 +69,8 @@
|
| checkReturnInClass(String className, String methodName, type) {
|
| var cls = findElement(compiler, className);
|
| var element = cls.lookupLocalMember(buildSourceString(methodName));
|
| - Expect.equals(type, typesInferrer.internal.returnTypeOf[element]);
|
| + Expect.equals(type,
|
| + typesInferrer.internal.returnTypeOf[element].simplify(compiler));
|
| }
|
|
|
| var subclassOfInterceptor =
|
|
|