| Index: tests/compiler/dart2js/simple_inferrer_unregister_call_test.dart
|
| diff --git a/tests/compiler/dart2js/simple_inferrer_unregister_call_test.dart b/tests/compiler/dart2js/simple_inferrer_unregister_call_test.dart
|
| index 6cf0402063628ad0d7759c336e318ab33454a9ee..96cce73387487b1c0c3901c9b02d461afb93287d 100644
|
| --- a/tests/compiler/dart2js/simple_inferrer_unregister_call_test.dart
|
| +++ b/tests/compiler/dart2js/simple_inferrer_unregister_call_test.dart
|
| @@ -33,7 +33,7 @@ void main() {
|
| Uri uri = new Uri(scheme: 'source');
|
| var compiler = compilerFor(TEST, uri);
|
| asyncTest(() => compiler.run(uri).then((_) {
|
| - var typesInferrer = compiler.typesTask.typesInferrer;
|
| + var typesInferrer = compiler.globalInference.typesInferrer;
|
|
|
| checkReturnInClass(String className, String methodName, type) {
|
| var cls = findElement(compiler, className);
|
| @@ -41,6 +41,6 @@ void main() {
|
| Expect.equals(type, typesInferrer.getReturnTypeOfElement(element));
|
| }
|
|
|
| - checkReturnInClass('A', '+', compiler.typesTask.uint31Type);
|
| + checkReturnInClass('A', '+', compiler.commonMasks.uint31Type);
|
| }));
|
| }
|
|
|