Class: Rubinius::AST::Retry
- Defined in:
- lib/compiler/ast/control_flow.rb
Instance Attribute Summary
Attributes inherited from Break
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(line) ⇒ Retry
constructor
A new instance of Retry.
- #to_sexp ⇒ Object
Methods inherited from Break
Methods inherited from Node
#ascii_graph, #attributes, #children, match_arguments?, match_send?, #new_block_generator, #new_generator, #node_name, node_name, #pos, #set_child, transform, #transform, transform_comment, transform_kind, transform_kind=, transform_name, #visit, #walk
Constructor Details
#initialize(line) ⇒ Retry
Returns a new instance of Retry.
264 265 266 |
# File 'lib/compiler/ast/control_flow.rb', line 264 def initialize(line) @line = line end |
Instance Method Details
#to_sexp ⇒ Object
268 269 270 |
# File 'lib/compiler/ast/control_flow.rb', line 268 def to_sexp [:retry] end |