- Timestamp:
- 08/09/10 14:10:50 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/generic-class-file/abcl/src/org/armedbear/lisp/jvm-class-file.lisp
r12880 r12884 604 604 (write-u2 (length (class-file-fields class)) stream) 605 605 (dolist (field (class-file-fields class)) 606 ( !write-field field stream))606 (write-field field stream)) 607 607 608 608 ;; methods … … 714 714 attributes) 715 715 716 (defun !make-field (name type &key (flags '(:public)))716 (defun make-field (name type &key (flags '(:public))) 717 717 "Creates a field for addition to a class file." 718 718 (%make-field :access-flags flags … … 742 742 (finalize-attributes (field-attributes field) nil class)) 743 743 744 (defun !write-field (field stream)744 (defun write-field (field stream) 745 745 "Writes classfile representation of `field' to `stream'." 746 746 (write-u2 (field-access-flags field) stream)
Note: See TracChangeset
for help on using the changeset viewer.