123456789_123456789_123456789_123456789_123456789_

Class: IRB::Statement::EmptyInput

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: IRB::Statement
Defined in: lib/irb/statement.rb

Instance Attribute Summary

Instance Method Summary

Instance Attribute Details

#is_assignment?Boolean (readonly)

[ GitHub ]

  
# File 'lib/irb/statement.rb', line 20

def is_assignment?
  false
end

#should_be_handled_by_debugger?Boolean (readonly)

Debugger takes empty input to repeat the last command

[ GitHub ]

  
# File 'lib/irb/statement.rb', line 29

def should_be_handled_by_debugger?
  true
end

#suppresses_echo?Boolean (readonly)

[ GitHub ]

  
# File 'lib/irb/statement.rb', line 24

def suppresses_echo?
  true
end

Instance Method Details

#code

[ GitHub ]

  
# File 'lib/irb/statement.rb', line 33

def code
  ""
end