class Byebug::ListCommand

def source_file_formatter

def source_file_formatter
  @source_file_formatter ||= SourceFileFormatter.new(
    frame.file,
    ->(n) { n == frame.line ? "=>" : "  " }
  )
end