token_text represent the real value as it's present in a file not only the char.

token_text is needed if you want to use some methods (for exemple: prefix, suffix or is_code_point methods)

Property definitions

nitc :: astbuilder $ ACharExpr :: make
	# `token_text` represent the real value as it's present in a file not only the char.
	# `token_text` is needed if you want to use some methods (for exemple: `prefix`, `suffix` or `is_code_point methods`)
	private init make(value: nullable Char, t: nullable MType, token_text: nullable String)
	do
		_value = value
		_mtype = t
		_n_char = new TChar
		if token_text != null then n_char.text = token_text
		if t != null then self.is_typed = true
	end
src/astbuilder.nit:582,2--591,4