| Index: pkg/compiler/lib/src/ssa/codegen.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/codegen.dart b/pkg/compiler/lib/src/ssa/codegen.dart
|
| index b016d2886a81ee06a23fa3c04643c76f22327fd1..1af507b12dca898ff8eb1562b81f9fd4fad29156 100644
|
| --- a/pkg/compiler/lib/src/ssa/codegen.dart
|
| +++ b/pkg/compiler/lib/src/ssa/codegen.dart
|
| @@ -1761,8 +1761,8 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
|
| var isolate = new js.VariableUse(
|
| _namer.globalObjectForLibrary(_commonElements.interceptorsLibrary));
|
| Selector selector = node.selector;
|
| - js.Name methodName = _oneShotInterceptorData.registerOneShotInterceptor(
|
| - selector, _namer, _closedWorld);
|
| + js.Name methodName =
|
| + _oneShotInterceptorData.registerOneShotInterceptor(selector, _namer);
|
| push(js
|
| .propertyCall(isolate, methodName, arguments)
|
| .withSourceInformation(node.sourceInformation));
|
|
|