| Index: lib/isolate.cc | 
| =================================================================== | 
| --- lib/isolate.cc	(revision 16415) | 
| +++ lib/isolate.cc	(working copy) | 
| @@ -380,8 +380,7 @@ | 
| ASSERT(result.IsFunction()); | 
| Function& func = Function::Handle(isolate); | 
| func ^= result.raw(); | 
| -    const Array& args = Array::Handle(Object::empty_array()); | 
| -    result = DartEntry::InvokeStatic(func, args); | 
| +    result = DartEntry::InvokeStatic(func, Object::empty_array()); | 
| if (result.IsError()) { | 
| StoreError(isolate, result); | 
| return false; | 
|  |