Flowdock
method

script_lines

Importance_0
v2_5_5 - Show latest stable - 0 notes - Class: DEBUGGER__
script_lines(file, line) 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 756
    def script_lines(file, line)
      unless (lines = SCRIPT_LINES__[file]) and lines != true
        Tracer::Single.get_line(file, line) if File.exist?(file)
        lines = SCRIPT_LINES__[file]
        lines = nil if lines == true
      end
      lines
    end
Register or log in to add new notes.