Class: IRB::Statement::EmptyInput
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
::IRB::Statement
|
|
Instance Chain:
self,
::IRB::Statement
|
|
Inherits: |
IRB::Statement
|
Defined in: | lib/irb/statement.rb |
Instance Attribute Summary
- #is_assignment? ⇒ Boolean readonly
-
#should_be_handled_by_debugger? ⇒ Boolean
readonly
Debugger takes empty input to repeat the last command.
- #suppresses_echo? ⇒ Boolean readonly
::IRB::Statement
- Inherited
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
# 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