Visit n if not null.

Property definitions

nitc $ PrettyPrinterVisitor :: visit
	# Visit `n` if not null.
	fun visit(n: nullable ANode) do
		if n == null then return
		n.accept_pretty_printer self
	end
src/pretty.nit:96,2--100,4