% POP top operand stack object
meth Pop =^ ( ·
var o : Object ·
var CurrentFrame : FrameInfo ·
TopFrame.GetFrame(CurrentFrame);
% the top object is popped from the operand stack
currentFrame.Pop(o);
TopFrame.SetFrame(CurrentFrame);
end end
)
end