Flowdock
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 554
  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.