% Store value into local variable

meth Store =^ ( ·

var count : Int ·

var b : bytecode ·

var o : Object ·

var CurrentFrame : FrameInfo ·

TopFrame.GetFrame(CurrentFrame);

% getting the local variable number

currentFrame.GetNextBytecode(b);

b.GetCode(count);

% Getting a value from the Operand stack

currentFrame.Pop(o);

% modifying the Local Variable content

currentFrame.PutLocal(count, o);

TopFrame.SetFrame(CurrentFrame);

end end end end

)

end