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

Property definitions

nitcc_runtime $ Visitor :: visit
	# 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:276,2--286,4

nitcc_runtime $ TreePrinterVisitor :: visit
	redef fun visit(n)
	do
		for i in [0..indent[ do writer.write("  ")
		writer.write(n.to_s)
		writer.write("\n")
		indent += 1
		super
		indent -= 1
	end
lib/nitcc_runtime/nitcc_runtime.nit:294,2--302,4