Property definitions

nitc $ AbstractCompiler :: init_count_type_test_tags
	protected fun init_count_type_test_tags: HashMap[String, Int]
	do
		var res = new HashMap[String, Int]
		for tag in count_type_test_tags do
			res[tag] = 0
		end
		return res
	end
src/compiler/abstract_compiler.nit:1225,2--1232,4