Entry point of the scope analysis

Property definitions

nitc :: scope $ APropdef :: do_scope
	# Entry point of the scope analysis
	fun do_scope(toolcontext: ToolContext)
	do
		var v = new ScopeVisitor(toolcontext, self)
		v.enter_visit(self)
		v.shift_scope
	end
src/semantize/scope.nit:257,2--263,4