class Dentaku::AST::And

Public Instance Methods

operator() click to toggle source
# File lib/dentaku/ast/combinators.rb, line 31
def operator
  :and
end
value(context = {}) click to toggle source
# File lib/dentaku/ast/combinators.rb, line 35
def value(context = {})
  left.value(context) && right.value(context)
end