method

trace_func

v1_9_2_180 - Show latest stable - Class: IRB::Frame
trace_func(event, file, line, id, binding)
public

No documentation available.

# 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