class SyntaxTree::YARV::VM

def frame_at(level)

def frame_at(level)
  current = frame
  level.times { current = current.parent }
  current
end