#245: Slots of a class with a custom meta-class are reported as unbound. -----------------------+---------------------------------------------------- Reporter: sboukarev | Owner: ehuelsmann Type: defect | Status: new Priority: major | Milestone: Component: (A)MOP | Version: Keywords: | -----------------------+---------------------------------------------------- {{{ (defpackage test2 (:use :cl :mop))
(in-package test2)
(defclass storable-class (standard-class) ())
(defmethod validate-superclass ((class standard-class) (superclass storable-class)) t)
(defmethod validate-superclass ((class storable-class) (superclass standard-class)) t)
;;;
(defclass identifiable () ((id :accessor id :initform 1)) (:metaclass storable-class)) }}}
ID slot is unbound and bound at the same time, despite having an initform.
(describe (make-instance 'identifiable)) #<IDENTIFIABLE {181F4B24}> is an instance of #<STORABLE-CLASS IDENTIFIABLE {1E4B2D10}>. The following slots have :INSTANCE allocation: ID unbound
(slot-boundp (make-instance 'identifiable) 'id) => NIL
(slot-value (make-instance 'identifiable) 'id) => 1
#245: Slots of a class with a custom meta-class are reported as unbound. -----------------------+---------------------------------------------------- Reporter: sboukarev | Owner: rschlatte Type: defect | Status: assigned Priority: major | Milestone: 1.1.0 Component: (A)MOP | Version: Keywords: | -----------------------+---------------------------------------------------- Changes (by ehuelsmann):
* owner: ehuelsmann => rschlatte * status: new => assigned * milestone: => 1.1.0
#245: Slots of a class with a custom meta-class are reported as unbound. ------------------------+--------------------------------------------------- Reporter: sboukarev | Owner: rschlatte Type: defect | Status: closed Priority: major | Milestone: 1.1.0 Component: (A)MOP | Version: Resolution: fixed | Keywords: ------------------------+--------------------------------------------------- Changes (by sboukarev):
* status: assigned => closed * resolution: => fixed
Comment:
Apparently, this has been fixed in ticket:14154
#245: Slots of a class with a custom meta-class are reported as unbound. ------------------------+--------------------------------------------------- Reporter: sboukarev | Owner: rschlatte Type: defect | Status: closed Priority: major | Milestone: 1.1.0 Component: (A)MOP | Version: Resolution: fixed | Keywords: ------------------------+---------------------------------------------------
Comment(by sboukarev):
Meaning changeset:14154
armedbear-ticket@common-lisp.net