Flowdock
method

display_frames

Importance_0
v1_8_7_72 - Show latest stable - 0 notes - Class: DEBUGGER__::Context
display_frames(pos) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/debug.rb, line 613
  def display_frames(pos)
    0.upto(@frames.size - 1) do |n|
      if n == pos
        stdout.print "--> "
      else
        stdout.print "    "
      end
      stdout.print format_frame(n)
    end
  end
Register or log in to add new notes.