- Timestamp:
- 07/31/10 21:33:24 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/generic-class-file/abcl/src/org/armedbear/lisp/jvm-class-file.lisp
r12832 r12840 876 876 877 877 878 (defvar *current-code-attribute* )878 (defvar *current-code-attribute* nil) 879 879 880 880 (defun save-code-specials (code) … … 890 890 *register* (code-current-local code))) 891 891 892 (defmacro with-code-to-method (( method &key safe-nesting) &body body)892 (defmacro with-code-to-method ((class-file method &key safe-nesting) &body body) 893 893 (let ((m (gensym)) 894 894 (c (gensym))) … … 899 899 (let* ((,m ,method) 900 900 (,c (method-ensure-code method)) 901 (*pool* (class-file-constants ,class-file)) 901 902 (*code* (code-code ,c)) 902 903 (*registers-allocated* (code-max-locals ,c))
Note: See TracChangeset
for help on using the changeset viewer.