Class: Y2R::AST::YCP::While

Inherits:
Node
  • Object
show all
Defined in:
lib/y2r/ast/ycp.rb

Instance Method Summary collapse

Methods inherited from Node

#always_returns?, #compile_as_copy_if_needed, #compile_statements, #compile_statements_inside_block, #compile_statements_with_whitespace, #creates_local_scope?, #needs_copy?, #never_nil?, #optimize_last_statement, #optimize_next, #optimize_return, #remove_duplicate_imports, transfers_comments

Instance Method Details

#compile(context) ⇒ Object



2032
2033
2034
2035
2036
2037
# File 'lib/y2r/ast/ycp.rb', line 2032

def compile(context)
  Ruby::While.new(
    :condition => cond.compile(context),
    :body      => compile_statements_inside_block(self.do, context)
  )
end

#symbolsObject



2028
2029
2030
# File 'lib/y2r/ast/ycp.rb', line 2028

def symbols
  []
end