class Dry::Logic::RuleCompiler

def visit_or(node)

def visit_or(node)
  left, right = node
  visit(left) | visit(right)
end