method

display_frames

ruby latest stable - Class: DEBUGGER__::Context

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.

display_frames(pos)
public

No documentation available.

# 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