class IRB::Statement::Command

def initialize(original_code, command_class, arg)

def initialize(original_code, command_class, arg)
  @code = original_code
  @command_class = command_class
  @arg = arg
end

def is_assignment?

def is_assignment?
  false
end

def should_be_handled_by_debugger?

def should_be_handled_by_debugger?
  require_relative 'command/debug'
  IRB::Command::DebugCommand > @command_class
end

def suppresses_echo?

def suppresses_echo?
  true
end