| Index: tests/compiler/dart2js/type_combination_test.dart
|
| diff --git a/tests/compiler/dart2js/type_combination_test.dart b/tests/compiler/dart2js/type_combination_test.dart
|
| index 5ca7197b47512d44ebed9051fe190e3e7c75aa4f..875f276288b932a3fc9f39e3b04d5a6a39be6a61 100644
|
| --- a/tests/compiler/dart2js/type_combination_test.dart
|
| +++ b/tests/compiler/dart2js/type_combination_test.dart
|
| @@ -736,7 +736,7 @@ void main() {
|
| """);
|
| JavaScriptBackend backend = compiler.backend;
|
| BackendHelpers helpers = backend.helpers;
|
| - ClosedWorld world = compiler.openWorld.closeWorld();
|
| + ClosedWorld world = compiler.openWorld.closeWorld(compiler.reporter);
|
| helpers.interceptorsLibrary.forEachLocalMember((element) {
|
| if (element.isClass) {
|
| element.ensureResolved(compiler.resolution);
|
| @@ -752,7 +752,7 @@ void main() {
|
| .registerInstantiatedType(compiler.coreTypes.functionType);
|
| compiler.enqueuer.resolution
|
| .registerInstantiatedType(patternImplClass.rawType);
|
| - compiler.openWorld.closeWorld();
|
| + compiler.openWorld.closeWorld(compiler.reporter);
|
|
|
| // Grab hold of a supertype for String so we can produce potential
|
| // string types.
|
|
|