Property definitions

nitc $ Scope :: defaultinit
private class Scope
	var variables = new HashMap[String, Variable]

	var escapemark: nullable EscapeMark = null

	fun get_variable(name: String): nullable Variable
	do
		if self.variables.has_key(name) then
			return self.variables[name]
		else
			return null
		end
	end
end
src/semantize/scope.nit:231,1--244,3