Visit the module to compute the real value of the literal-related node of the AST.

Warnings and errors are displayed on the toolcontext.

Property definitions

nitc :: literal $ AModule :: do_literal
	# Visit the module to compute the real value of the literal-related node of the AST.
	# Warnings and errors are displayed on the toolcontext.
	fun do_literal(toolcontext: ToolContext)
	do
		var v = new LiteralVisitor(toolcontext)
		v.enter_visit(self)
	end
src/literal.nit:34,2--40,4