class Byebug::Frame

def mark


marks regular frames
ͱ-- marks c-frames
--> marks the current frame

Formatted mark for the frame.
def mark
  return "-->" if current?
  return "    ͱ--" if c_frame?
  "   "
end