The topmost ancestor of the element

This just apply parent until the first one

Property definitions

nitc $ ANode :: root
	# The topmost ancestor of the element
	# This just apply `parent` until the first one
	fun root: ANode
	do
		var res = self
		loop
			var p = res.parent
			if p == null then return res
			res = p
		end
	end
src/parser/parser_nodes.nit:63,2--73,4