method
format_frame
v2_5_5 -
Show latest stable
- Class:
DEBUGGER__
format_frame(pos)public
No documentation available.
# File lib/debug.rb, line 750
def format_frame(pos)
_, file, line, id = @frames[pos]
sprintf "#%d %s:%s%s\n", pos + 1, file, line,
(id ? ":in `#{id.id2name}'" : "")
end