Flowdock
method

display_expressions

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: DEBUGGER__::Context
display_expressions(binding) 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 591
  def display_expressions(binding)
    n = 1
    for d in display
      if d[0]
        stdout.printf "%d: ", n
        display_expression(d[1], binding)
      end
      n += 1
    end
  end
Register or log in to add new notes.