| Index: src/runtime/runtime-function.cc
|
| diff --git a/src/runtime/runtime-function.cc b/src/runtime/runtime-function.cc
|
| index c849bbfd1e54aba5d85c0a9390fa67572f611a6d..b0c75bc56a03154ab16c7490cb985ee34271d332 100644
|
| --- a/src/runtime/runtime-function.cc
|
| +++ b/src/runtime/runtime-function.cc
|
| @@ -346,6 +346,9 @@ static SmartArrayPointer<Handle<Object> > GetCallerArguments(Isolate* isolate,
|
| inlined_jsframe_index, &argument_count);
|
| TranslatedFrame::iterator iter = translated_frame->begin();
|
|
|
| + // Skip the function.
|
| + iter++;
|
| +
|
| // Skip the receiver.
|
| iter++;
|
| argument_count--;
|
|
|