Object
# File lib/rkelly/visitors/visitor.rb, line 37 def accept(target) target.accept(self) end
# File lib/rkelly/visitors/visitor.rb, line 124 def visit_BracketAccessorNode(o) [ o.value.accept(self), o.accessor.accept(self) ] end
# File lib/rkelly/visitors/visitor.rb, line 131 def visit_DotAccessorNode(o) o.value.accept(self) end
# File lib/rkelly/visitors/visitor.rb, line 107 def visit_ForInNode(o) [ o.left.accept(self), o.right.accept(self), o.value.accept(self) ] end
Generated with the Darkfish Rdoc Generator 2.