Class: CodeTools::AST::Or

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

Instance Method Summary collapse

Instance Method Details

#execute(e) ⇒ Object



83
84
85
# File 'lib/rubinius/code/compiler/evaluator.rb', line 83

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