| Index: src/frames.h
|
| diff --git a/src/frames.h b/src/frames.h
|
| index 11e8d28784ccb846074af47cf4804c0aed8b7afe..678191b950a0172a37f62a78fb9533f977502613 100644
|
| --- a/src/frames.h
|
| +++ b/src/frames.h
|
| @@ -536,6 +536,11 @@ class JavaScriptFrame: public StandardFrame {
|
| return GetNumberOfIncomingArguments();
|
| }
|
|
|
| + // Access the operand stack.
|
| + inline Address GetOperandSlot(int index) const;
|
| + inline Object* GetOperand(int index) const;
|
| + inline int ComputeOperandsCount() const;
|
| +
|
| // Debugger access.
|
| void SetParameterValue(int index, Object* value) const;
|
|
|
|
|