Property definitions

nitc $ Scope :: get_variable
	fun get_variable(name: String): nullable Variable
	do
		if self.variables.has_key(name) then
			return self.variables[name]
		else
			return null
		end
	end
src/semantize/scope.nit:236,2--243,4