Property definitions

trees $ BKNode :: defaultinit
# A node that goes in a BKTree
#
# Each child is mapped from `self` by its distance as an Int.
private class BKNode
	super HashMap[Int, BKNode]

	# Key stored in `self`
	var key: String

	redef fun to_s do return "\{{key}\}"
end
lib/trees/bktree.nit:113,1--123,3