% Load value from local variable

meth Load =^ ( ·

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);

% searching for Local Variable content

currentFrame.GetLocal(count, o);

% Placing one copy of the local variable on the Operand stack

currentFrame.Push(o);

TopFrame.SetFrame(CurrentFrame);

end end end end

)

end