Class: Melbourne::AST::RescueSplat
- Defined in:
- lib/melbourne/ast/exceptions.rb
Overview
TODO: document!
Instance Attribute Summary collapse
-
#value ⇒ Object
Returns the value of attribute value.
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(line, value) ⇒ RescueSplat
constructor
A new instance of RescueSplat.
Methods inherited from Node
Constructor Details
#initialize(line, value) ⇒ RescueSplat
Returns a new instance of RescueSplat.
173 174 175 176 |
# File 'lib/melbourne/ast/exceptions.rb', line 173 def initialize(line, value) @line = line @value = value end |
Instance Attribute Details
#value ⇒ Object
Returns the value of attribute value.
171 172 173 |
# File 'lib/melbourne/ast/exceptions.rb', line 171 def value @value end |