Step on the path and get the next node to travel

Property definitions

a_star $ AStarPath :: step
	# Step on the path and get the next node to travel
	fun step: N
	do
		assert nodes.length >= at else print "a_star::AStarPath::step failed, is at_end_of_path"

		var s = nodes[at]
		at += 1

		return s
	end
lib/a_star/a_star.nit:312,2--321,4