Class: IRB::Statement::IncorrectAlias
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 |
Class Method Summary
- .new(message) ⇒ IncorrectAlias constructor
Instance Attribute Summary
- #is_assignment? ⇒ Boolean readonly
- #message readonly
- #should_be_handled_by_debugger? ⇒ Boolean readonly
- #suppresses_echo? ⇒ Boolean readonly
::IRB::Statement
- Inherited
Constructor Details
.new(message) ⇒ IncorrectAlias
# File 'lib/irb/statement.rb', line 60
def initialize( ) @code = "" @message = end
Instance Attribute Details
#is_assignment? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'lib/irb/statement.rb', line 69
def is_assignment? false end
#message (readonly)
[ GitHub ]# File 'lib/irb/statement.rb', line 58
attr_reader :
#should_be_handled_by_debugger? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'lib/irb/statement.rb', line 65
def should_be_handled_by_debugger? false end
#suppresses_echo? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'lib/irb/statement.rb', line 73
def suppresses_echo? true end