nitcc_runtime :: Visitor :: visit
Should be redefined by concrete visitors
Should not be called directly (use enter_visit
instead)
By default, the visitor just rescursively visit the children of n
# The specific implementation of a visit
#
# Should be redefined by concrete visitors
#
# Should not be called directly (use `enter_visit` instead)
#
# By default, the visitor just rescursively visit the children of `n`
protected fun visit(n: Node)
do
n.visit_children(self)
end
lib/nitcc_runtime/nitcc_runtime.nit:281,2--291,4