| Index: sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| index 664153d3b6afd1149eaef9a6251b1eb70944cc22..08c479485829ed6d4677216b11fc9856cd530196 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| @@ -1580,8 +1580,6 @@ abstract class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
|
| void registerGetter(HInvokeDynamic node) {
|
| Selector selector = getOptimizedSelectorFor(node, node.selector);
|
| world.registerDynamicGetter(selector.name, selector);
|
| - world.registerInstantiatedClass(
|
| - compiler.functionClass, work.resolutionTree);
|
| }
|
|
|
| visitInvokeDynamicSetter(HInvokeDynamicSetter node) {
|
| @@ -1983,8 +1981,6 @@ abstract class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
|
| void visitStatic(HStatic node) {
|
| Element element = node.element;
|
| if (element.isFunction()) {
|
| - world.registerInstantiatedClass(
|
| - compiler.functionClass, work.resolutionTree);
|
| push(new js.VariableUse(
|
| backend.namer.isolateStaticClosureAccess(node.element)));
|
| } else {
|
|
|