Ask the visitor to visit a given node.

Usually automatically called by visit_all* methods. This method should not be redefined

Property definitions

nitc $ Visitor :: enter_visit
	# Ask the visitor to visit a given node.
	# Usually automatically called by visit_all* methods.
	# This method should not be redefined
	fun enter_visit(e: nullable ANode)
	do
		if e == null then return
		var old = _current_node
		_current_node = e
		visit(e)
		_current_node = old
	end
src/parser/parser_nodes.nit:467,2--477,4

nitc $ StringFinder :: enter_visit
	redef fun enter_visit(e) do
		if e isa AAnnotation then return
		super
	end
src/frontend/i18n_phase.nit:107,2--110,4