class Byebug::ReloadCommand

def execute

def execute
  Byebug.source_reload
  onoff = Setting[:autoreload] ? 'on' : 'off'
  puts "Source code was reloaded. Automatic reloading is #{onoff}"
end