Property definitions

markdown2 $ MdListBlockParser :: block=
	redef var block is lazy do
		if is_ordered then
			return new MdOrderedList(location, digit.as(not null), delim.as(not null))
		else
			return new MdUnorderedList(location, bullet.as(not null))
		end
	end
lib/markdown2/markdown_block_parsing.nit:965,2--971,4