Changeset 11896 for trunk/abcl/src/org/armedbear/lisp/compiler-pass2.lisp
- Timestamp:
- 05/18/09 20:28:02 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/compiler-pass2.lisp
r11892 r11896 2198 2198 2199 2199 The field type of the object is specified by OBJ-REF." 2200 (let ((field-name (gethash1 obj*declared-objects*)))2200 (let ((field-name (gethash1 (list obj obj-ref) *declared-objects*))) 2201 2201 (if field-name 2202 2202 field-name … … 2214 2214 (emit 'putstatic *this-class* g2 obj-ref) 2215 2215 (setf *static-code* *code*) 2216 (setf (gethash obj*declared-objects*) g2))))))2216 (setf (gethash (list obj obj-ref) *declared-objects*) g2)))))) 2217 2217 2218 2218 (defun declare-lambda (obj)
Note: See TracChangeset
for help on using the changeset viewer.