class Riml::Compiler::DrillDownVisitor
helper to drill down to all descendants of a certain node and do something to all or a set of them
Public Instance Methods
walk_node!(node)
click to toggle source
# File lib/riml/compiler.rb, line 514 def walk_node!(node) node.each do |expr| expr.accept(self) if Visitable === expr end if node.respond_to?(:each) end