class Byebug::SourceCommand
def execute
def execute return puts(help) unless @match[1] unless @state && @state.interface return errmsg(pr('source.errors.not_available')) end file = File.expand_path(@match[1]).strip unless File.exist?(file) return errmsg(pr('source.errors.not_found', file: file)) end @state.interface.read_file(file) end