Class: CodeTools::AST::Until

Inherits:
While show all
Defined in:
lib/rubinius/code/ast/control_flow.rb

Instance Attribute Summary

Attributes inherited from While

#body, #check_first, #condition

Attributes inherited from Node

#line

Instance Method Summary collapse

Methods inherited from While

#body_bytecode, #condition_bytecode, #defined, #initialize, #to_sexp

Methods inherited from Node

#ascii_graph, #attributes, #children, #defined, #initialize, match_arguments?, match_send?, #new_block_generator, #new_generator, #node_name, #or_bytecode, #pos, #set_child, #to_sexp, #transform, transform, transform_comment, transform_kind, transform_kind=, transform_name, #value_defined, #visit, #walk

Constructor Details

This class inherits a constructor from CodeTools::AST::While

Instance Method Details

#bytecode(g) ⇒ Object



433
434
435
# File 'lib/rubinius/code/ast/control_flow.rb', line 433

def bytecode(g)
  super(g, false)
end

#sexp_nameObject



437
438
439
# File 'lib/rubinius/code/ast/control_flow.rb', line 437

def sexp_name
  :until
end