Do a deep search and return an array of tokens that match a given text

Property definitions

nitc $ ANode :: collect_tokens_by_text
	# Do a deep search and return an array of tokens that match a given text
	fun collect_tokens_by_text(text: String): Array[Token]
	do
		var v = new CollectTokensByTextVisitor(text)
		v.enter_visit(self)
		return v.result
	end
src/parser/parser_nodes.nit:145,2--151,4