class Dentaku::AST::Or

Public Instance Methods

operator() click to toggle source
# File lib/dentaku/ast/combinators.rb, line 41
def operator
  :or
end
value(context = {}) click to toggle source
# File lib/dentaku/ast/combinators.rb, line 45
def value(context = {})
  left.value(context) || right.value(context)
end