| Index: sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
 | 
| ===================================================================
 | 
| --- sdk/lib/_internal/compiler/implementation/ssa/codegen.dart	(revision 15907)
 | 
| +++ sdk/lib/_internal/compiler/implementation/ssa/codegen.dart	(working copy)
 | 
| @@ -2166,14 +2166,10 @@
 | 
|    }
 | 
|  
 | 
|    void visitIndex(HIndex node) {
 | 
| -    if (node.isBuiltin(types)) {
 | 
| -      use(node.inputs[1]);
 | 
| -      js.Expression receiver = pop();
 | 
| -      use(node.inputs[2]);
 | 
| -      push(new js.PropertyAccess(receiver, pop()), node);
 | 
| -    } else {
 | 
| -      visitInvokeStatic(node);
 | 
| -    }
 | 
| +    use(node.receiver);
 | 
| +    js.Expression receiver = pop();
 | 
| +    use(node.index);
 | 
| +    push(new js.PropertyAccess(receiver, pop()), node);
 | 
|    }
 | 
|  
 | 
|    void visitIndexAssign(HIndexAssign node) {
 | 
| 
 |