Ignore:
Timestamp:
08/09/10 14:10:50 (13 years ago)
Author:
ehuelsmann
Message:

Clean up after migration of fields and the pool.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/generic-class-file/abcl/src/org/armedbear/lisp/jvm-class-file.lisp

    r12880 r12884  
    604604  (write-u2 (length (class-file-fields class)) stream)
    605605  (dolist (field (class-file-fields class))
    606     (!write-field field stream))
     606    (write-field field stream))
    607607
    608608  ;; methods
     
    714714  attributes)
    715715
    716 (defun !make-field (name type &key (flags '(:public)))
     716(defun make-field (name type &key (flags '(:public)))
    717717  "Creates a field for addition to a class file."
    718718  (%make-field :access-flags flags
     
    742742  (finalize-attributes (field-attributes field) nil class))
    743743
    744 (defun !write-field (field stream)
     744(defun write-field (field stream)
    745745  "Writes classfile representation of `field' to `stream'."
    746746  (write-u2 (field-access-flags field) stream)
Note: See TracChangeset for help on using the changeset viewer.