Visitable is a mix-in module that makes a class visitable by a Visitor
# File lib/puppet/pops/visitable.rb, line 3 def accept(visitor, *arguments) visitor.visit(self, *arguments) end