Property definitions

nitc $ TId :: defaultinit
# A standard identifier (variable, method...). They start with a lowercase.
class TId
	super Token
	redef fun to_s
	do
		do return "identifier '{text}'"
	end
end
src/parser/parser_nodes.nit:1015,1--1022,3