Property definitions

core $ HashNode :: defaultinit
private abstract class HashNode[K]
	var key: K
	type N: HashNode[K]
	var next_item: nullable N = null
	var prev_item: nullable N = null
	var prev_in_bucklet: nullable N = null
	var next_in_bucklet: nullable N = null
end
lib/core/collection/hash_collection.nit:198,1--205,3