Returns the text of the token

Property definitions

nitc $ AAugmentedLiteral :: text
	# Returns the text of the token
	private fun text: String is abstract
src/literal.nit:100,2--101,37

nitc :: literal $ ACharExpr :: text
	redef fun text do return n_char.text
src/literal.nit:135,2--37

nitc :: literal $ AStringFormExpr :: text
	redef fun text do return n_string.text
src/literal.nit:202,2--39