top(n = 0)
public
Returns the n number of frames on the call stack from the last
frame initialized.
Raises FrameUnderflow if there are no frames in the given stack range.
Show source
def top(n = 0)
bind = @frames[-(n + CALL_STACK_OFFSET)]
Fail FrameUnderflow unless bind
bind
end