Index: src/accessors.cc |
=================================================================== |
--- src/accessors.cc (revision 1355) |
+++ src/accessors.cc (working copy) |
@@ -387,7 +387,7 @@ |
if (frame->function() != *function) continue; |
// If there is an arguments variable in the stack, we return that. |
- int index = ScopeInfo<>::StackSlotIndex(frame->FindCode(), |
+ int index = ScopeInfo<>::StackSlotIndex(frame->code(), |
Heap::arguments_symbol()); |
Kevin Millikin (Chromium)
2009/02/25 14:54:33
Screwy indentation here.
Kasper Lund
2009/02/25 15:00:19
Indentation is slightly off here.
iposva
2009/02/25 16:42:54
Done.
iposva
2009/02/25 16:42:54
Done.
|
if (index >= 0) return frame->GetExpression(index); |