Ignore:
Timestamp:
03/19/22 12:50:18 (18 months ago)
Author:
Mark Evenson
Message:

Untabify en masse

Results of running style.org source blocks on tree

File:
1 edited

Legend:

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

    r15098 r15569  
    133133  (setf name (substitute #\/ #\. name))
    134134  (%make-jvm-class-name :name-internal name
    135       :ref (concatenate 'string "L" name ";")))
     135                        :ref (concatenate 'string "L" name ";")))
    136136
    137137(defun class-array (class-name)
     
    151151      (setf (class-array-class class-name)
    152152            (%make-jvm-class-name :name-internal name-and-ref
    153           :ref name-and-ref))))
     153                                  :ref name-and-ref))))
    154154  (class-array-class class-name))
    155155
     
    11051105
    11061106(defstruct (jvm-method (:constructor %make-jvm-method)
    1107            (:conc-name method-))
     1107                       (:conc-name method-))
    11081108  "Holds information on the properties of methods in the class(-file)."
    11091109  access-flags
     
    11301130  "Creates a method for addition to a class file."
    11311131  (%make-jvm-method :descriptor (cons return args)
    1132         :access-flags flags
    1133         :name (map-method-name name)))
     1132                    :access-flags flags
     1133                    :name (map-method-name name)))
    11341134
    11351135(defun method-add-attribute (method attribute)
     
    11471147                           (if (member :static (method-access-flags method))
    11481148                               0 1)) ;; 1 == implicit 'this'
    1149       optimize)))
     1149                        optimize)))
    11501150
    11511151(defun method-ensure-code (method &optional (optimize t))
Note: See TracChangeset for help on using the changeset viewer.