Changeset 12944
- Timestamp:
- 10/03/10 09:19:24 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/test/lisp/abcl/class-file.lisp
r12942 r12944 167 167 (jvm::class-add-method file (jvm::make-method "MBD" nil jvm::+lisp-object+)) 168 168 (jvm::class-add-method file (jvm::make-method :constructor :void nil)) 169 (jvm::class-add-method file (jvm::make-method : class-constructor :void nil))169 (jvm::class-add-method file (jvm::make-method :static-initializer :void nil)) 170 170 T) 171 171 T) … … 188 188 (let* ((class (jvm::make-class-name "org/armedbear/lisp/gm_1")) 189 189 (file (jvm::make-class-file class jvm::+lisp-object+ '(:public))) 190 (method (jvm::make-method : class-constructor :void nil190 (method (jvm::make-method :static-initializer :void nil 191 191 :flags '(:static)))) 192 192 (jvm::class-add-method file method) … … 258 258 (jvm::class-add-field file (jvm::make-field "N1" jvm::+lisp-object+ 259 259 :flags '(:static :private))) 260 (let ((method (jvm::make-method : class-constructor :void nil :flags '(:static))))260 (let ((method (jvm::make-method :static-initializer :void nil :flags '(:static)))) 261 261 (jvm::class-add-method file method) 262 262 (jvm::with-code-to-method (file method) … … 324 324 (let* ((class (jvm::make-class-name "org/armedbear/lisp/gm_6")) 325 325 (file (jvm::make-class-file class jvm::+lisp-object+ '(:public))) 326 (method (jvm::make-method : class-constructor :void nil326 (method (jvm::make-method :static-initializer :void nil 327 327 :flags '(:static))) 328 328 (registers nil)) … … 348 348 (let* ((class (jvm::make-class-name "org/armedbear/lisp/gm_7")) 349 349 (file (jvm::make-class-file class jvm::+lisp-object+ '(:public))) 350 (method1 (jvm::make-method : class-constructor :void nil350 (method1 (jvm::make-method :static-initializer :void nil 351 351 :flags '(:static))) 352 352 (method2 (jvm::make-method "method2" :void nil))
Note: See TracChangeset
for help on using the changeset viewer.