Visit an expression and do not care about the return value

Property definitions

nitc $ TypeVisitor :: visit_stmt
	# Visit an expression and do not care about the return value
	fun visit_stmt(nexpr: nullable AExpr)
	do
		if nexpr == null then return
		nexpr.accept_typing(self)
	end
src/semantize/typing.nit:128,2--133,4