Flowdock
trace_func(event, file, line, id, binding) public

No documentation

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

Hide source
# File lib/irb/frame.rb, line 27
    def trace_func(event, file, line, id, binding)
      case event
      when 'call', 'class'
        @frames.push binding
      when 'return', 'end'
        @frames.pop
      end
    end
Register or log in to add new notes.