Changeset 15266
- Timestamp:
- Mar 22, 2012, 7:00:44 AM (13 years ago)
- File:
-
- 1 edited
-
trunk/source/level-1/l1-clos.lisp (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/level-1/l1-clos.lisp
r15265 r15266 1993 1993 (eq (instance.class-wrapper instance) wrapper))) 1994 1994 (%slot-ref (instance.slots instance) location)) 1995 (t (no-applicable-method ( car (%gf-dispatch-table-gf dt)) instance))))))1995 (t (no-applicable-method (method-generic-function (car (%gf-dispatch-table-methods dt))) instance)))))) 1996 1996 (register-dcode-proto #'singleton-reader-dcode *gf-proto-one-arg*) 1997 1997 … … 2005 2005 (%svref dt %gf-dispatch-table-first-data)) 2006 2006 (%slot-ref (instance.slots instance) (%svref dt (1+ %gf-dispatch-table-first-data))) 2007 (no-applicable-method ( car (%gf-dispatch-table-gf dt)) instance)))2007 (no-applicable-method (method-generic-function (car (%gf-dispatch-table-methods dt))) instance))) 2008 2008 (register-dcode-proto #'reader-constant-location-dcode *gf-proto-one-arg*) 2009 2009 … … 2027 2027 (not (eql 0 (sbit bits defining-class-ordinal)))) 2028 2028 (%slot-ref (instance.slots instance) (%svref dt (1+ %gf-dispatch-table-first-data))) 2029 (no-applicable-method ( car (%gf-dispatch-table-gf dt)) instance))))2029 (no-applicable-method (method-generic-function (car (%gf-dispatch-table-methods dt))) instance)))) 2030 2030 (register-dcode-proto #'reader-constant-location-inherited-from-single-class-dcode *gf-proto-one-arg*) 2031 2031 … … 2084 2084 (return t))) 2085 2085 (%slot-ref (instance.slots instance) (%svref dt (1+ %gf-dispatch-table-first-data))) 2086 (no-applicable-method ( car (%gf-dispatch-table-gf dt)) instance))))2086 (no-applicable-method (method-generic-function (car (%gf-dispatch-table-methods dt))) instance)))) 2087 2087 (register-dcode-proto #'reader-constant-location-inherited-from-multiple-classes-dcode *gf-proto-one-arg*) 2088 2088 … … 2100 2100 (if location 2101 2101 (%slot-ref (instance.slots instance) location) 2102 (no-applicable-method ( car (%gf-dispatch-table-gf dt)) instance))))2102 (no-applicable-method (method-generic-function (car (%gf-dispatch-table-methods dt))) instance)))) 2103 2103 (register-dcode-proto #'reader-variable-location-dcode *gf-proto-one-arg*) 2104 2104 … … 2170 2170 (unless (< argnum 0) 2171 2171 (setf (%gf-dispatch-table-argnum dt) (lognot argnum) 2172 (%gf-dispatch-table-gf dt) ( cons f (%gf-dcode f)))))2172 (%gf-dispatch-table-gf dt) (%gf-dcode f)))) 2173 2173 2174 2174 (cond ((null (cdr alist)) … … 2568 2568 (argnum (%gf-dispatch-table-argnum dt))) 2569 2569 (when (< argnum 0) 2570 (let* ((dcode ( cdr (%gf-dispatch-table-gf dt))))2570 (let* ((dcode (%gf-dispatch-table-gf dt))) 2571 2571 (setf (%gf-dispatch-table-argnum dt) (lognot argnum) 2572 2572 (%gf-dispatch-table-gf dt) f
Note:
See TracChangeset
for help on using the changeset viewer.
