The raw content on the token

Property definitions

nitc $ Token :: text
	# The raw content on the token
	fun text: String is abstract
src/parser/parser_nodes.nit:350,2--351,29

nitc :: lexer_work $ Token :: text
    redef fun text
    do
        var res = _cached_text
        if res != null then return res
        res = location.text
	_cached_text = res
	return res
    end
src/parser/lexer_work.nit:24,5--31,7