Skip to content
Snippets Groups Projects
Forked from cmucl / cmucl
Source project has a limited visibility.
  • rtoy's avatar
    e5d1aeaf
    From Gerd, cmucl-imp, 2005-06-18: · e5d1aeaf
    rtoy authored
    (progn
      (defclass foo92b (foo92a) ((s :initarg :s)))
      (defclass foo92a () ())
      (let ((x (make-instance 'foo92b :s 5)) (update-counter 0))
        (defclass foo92b (foo92a) ((s) (s1) (s2))) ; still subclass of foo92a
        (slot-value x 's)
        (defmethod update-instance-for-redefined-class ((object foo92b) added-slots discarded-slots property-list &rest initargs)
          (incf update-counter))
        (make-instances-obsolete 'foo92a)
        (slot-value x 's)
        update-counter))
    Expected: 1
    Got:      0
    
    [Taken from clisp's clos.tst]
    
    
    	* src/pcl/std-class.lisp (force-cache-flushes): Use new state
    	:obsolete if some superclass has been obsoleted.
    
    	* src/pcl/cache.lisp (check-wrapper-validity): If state is
    	:invalid, recurse because force-cache-flushes can change the
    	state.
    e5d1aeaf
    History
    From Gerd, cmucl-imp, 2005-06-18:
    rtoy authored
    (progn
      (defclass foo92b (foo92a) ((s :initarg :s)))
      (defclass foo92a () ())
      (let ((x (make-instance 'foo92b :s 5)) (update-counter 0))
        (defclass foo92b (foo92a) ((s) (s1) (s2))) ; still subclass of foo92a
        (slot-value x 's)
        (defmethod update-instance-for-redefined-class ((object foo92b) added-slots discarded-slots property-list &rest initargs)
          (incf update-counter))
        (make-instances-obsolete 'foo92a)
        (slot-value x 's)
        update-counter))
    Expected: 1
    Got:      0
    
    [Taken from clisp's clos.tst]
    
    
    	* src/pcl/std-class.lisp (force-cache-flushes): Use new state
    	:obsolete if some superclass has been obsoleted.
    
    	* src/pcl/cache.lisp (check-wrapper-validity): If state is
    	:invalid, recurse because force-cache-flushes can change the
    	state.