Module: Byebug::FrameFunctions

Defined in:
lib/byebug/commands/frame.rb

Instance Method Summary collapse

Instance Method Details

#get_pr_arguments_with_xml(pos, mark = nil) ⇒ Object Also known as: get_pr_arguments

Mark should be ‘true’ or ‘false’, as a String



5
6
7
8
9
10
# File 'lib/byebug/commands/frame.rb', line 5

def get_pr_arguments_with_xml(pos, mark = nil)
  mark = (pos == @state.frame_pos).to_s
  res = get_pr_arguments_without_xml(pos, mark)
  res[:file] = File.expand_path(res[:file])
  res
end