Class: Dentaku::AST::And

Inherits:
Combinator show all
Defined in:
lib/dentaku/ast/combinators.rb

Instance Attribute Summary

Attributes inherited from Operation

#left, #right

Instance Method Summary collapse

Methods inherited from Combinator

#initialize, #type

Methods inherited from Operation

#dependencies, #initialize, right_associative?

Methods inherited from Node

arity, #dependencies, precedence

Constructor Details

This class inherits a constructor from Dentaku::AST::Combinator

Instance Method Details

#value(context = {}) ⇒ Object



23
24
25
# File 'lib/dentaku/ast/combinators.rb', line 23

def value(context={})
  left.value(context) && right.value(context)
end