PHP 8.2.31
Preview: tracer.rb Size: 1.10 KB
//proc/thread-self/root/opt/alt/ruby19/lib64/ruby/1.9.1/irb/ext/tracer.rb

#
#   irb/lib/tracer.rb -
#   	$Release Version: 0.9.6$
#   	$Revision: 25189 $
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require "tracer"

module IRB

  # initialize tracing function
  def IRB.initialize_tracer
    Tracer.verbose = false
    Tracer.add_filter {
      |event, file, line, id, binding, *rests|
      /^#{Regexp.quote(@CONF[:IRB_LIB_PATH])}/ !~ file and
	File::basename(file) != "irb.rb"
    }
  end

  class Context
    attr_reader :use_tracer
    alias use_tracer? use_tracer

    def use_tracer=(opt)
      if opt
	Tracer.set_get_line_procs(@irb_path) {
	  |line_no, *rests|
	  @io.line(line_no)
	}
      elsif !opt && @use_tracer
	Tracer.off
      end
      @use_tracer=opt
    end
  end

  class WorkSpace
    alias __evaluate__ evaluate
    def evaluate(context, statements, file = nil, line = nil)
      if context.use_tracer? && file != nil && line != nil
	Tracer.on
	begin
	  __evaluate__(context, statements, file, line)
	ensure
	  Tracer.off
	end
      else
	__evaluate__(context, statements, file || __FILE__, line || __LINE__)
      end
    end
  end

  IRB.initialize_tracer
end

Directory Contents

Dirs: 0 × Files: 9

Name Size Perms Modified Actions
1.07 KB lrw-r--r-- 2009-10-02 12:04:37
Edit Download
2.05 KB lrw-r--r-- 2009-10-02 12:04:37
Edit Download
2.18 KB lrw-r--r-- 2009-10-02 12:04:37
Edit Download
562 B lrw-r--r-- 2009-10-02 12:04:37
Edit Download
4.73 KB lrw-r--r-- 2010-11-08 20:59:01
Edit Download
2.13 KB lrw-r--r-- 2009-10-02 12:04:37
Edit Download
1.10 KB lrw-r--r-- 2009-10-02 12:04:37
Edit Download
1.27 KB lrw-r--r-- 2009-10-02 12:04:37
Edit Download
915 B lrw-r--r-- 2009-10-02 12:04:37
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).