class Byebug::DAP::Command::Source
Public Instance Methods
execute()
click to toggle source
# File lib/byebug/dap/commands/source.rb, line 7 def execute return unless path = can_read_file!(args.source.path) respond! body: { content: IO.read(path) } end