Class: IRB::Statement::Expression
- Inherits:
-
IRB::Statement
- Object
- IRB::Statement
- IRB::Statement::Expression
- Defined in:
- lib/irb/statement.rb
Instance Attribute Summary
Attributes inherited from IRB::Statement
Instance Method Summary collapse
- #evaluable_code ⇒ Object
-
#initialize(code, is_assignment) ⇒ Expression
constructor
A new instance of Expression.
- #is_assignment? ⇒ Boolean
- #should_be_handled_by_debugger? ⇒ Boolean
- #suppresses_echo? ⇒ Boolean
Constructor Details
#initialize(code, is_assignment) ⇒ Expression
Returns a new instance of Expression.
24 25 26 27 |
# File 'lib/irb/statement.rb', line 24 def initialize(code, is_assignment) @code = code @is_assignment = is_assignment end |
Instance Method Details
#evaluable_code ⇒ Object
41 42 43 |
# File 'lib/irb/statement.rb', line 41 def evaluable_code @code end |
#is_assignment? ⇒ Boolean
37 38 39 |
# File 'lib/irb/statement.rb', line 37 def is_assignment? @is_assignment end |
#should_be_handled_by_debugger? ⇒ Boolean
33 34 35 |
# File 'lib/irb/statement.rb', line 33 def should_be_handled_by_debugger? true end |
#suppresses_echo? ⇒ Boolean
29 30 31 |
# File 'lib/irb/statement.rb', line 29 def suppresses_echo? @code.match?(/;\s*\z/) end |