method
line_at
v2_5_5 -
Show latest stable
- Class:
DEBUGGER__
line_at(file, line)public
No documentation available.
# File lib/debug.rb, line 782
def line_at(file, line)
lines = script_lines(file, line)
if lines and line = lines[line-1]
return line
end
return "\n"
end