Class: CodeTools::AST::And

Inherits:
Node
  • Object
show all
Defined in:
lib/rubinius/code/compiler/evaluator.rb

Direct Known Subclasses

Or

Instance Method Summary collapse

Instance Method Details

#execute(e) ⇒ Object



77
78
79
# File 'lib/rubinius/code/compiler/evaluator.rb', line 77

def execute(e)
  @left.execute(e) and @right.execute(e)
end