Is this paragraph in a tight list?

Property definitions

markdown2 $ MdParagraph :: is_in_tight_list
	# Is this paragraph in a tight list?
	fun is_in_tight_list: Bool do
		var parent = self.parent
		if parent == null then return false
		var gramps = parent.parent
		return gramps isa MdListBlock and gramps.is_tight
	end
lib/markdown2/markdown_ast.nit:344,2--350,4