Changeset 13366
- Timestamp:
- 06/29/11 15:34:58 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/java.lisp
r13102 r13366 67 67 do (assert (stringp m) (m) "Method names must be strings: ~s" m) and collect m 68 68 else 69 do (assert (or (symbolp m) (functionp m)) (m) "Methods must be function designators: ~s" m))) 70 (null (make-immediate-object nil :ref))) 69 do (assert (or (symbolp m) (functionp m)) (m) "Methods must be function designators: ~s" m)))) 71 70 (loop for method across 72 71 (jclass-methods interface :declared nil :public t) … … 79 78 ,arglist 80 79 ,(when arglist '(declare (ignore ignore))) 81 ,(if void-p '(values) null))))80 ,(if void-p '(values) java:+null+)))) 82 81 (warn "Implementing dummy method ~a for interface ~a" 83 82 method-name (jclass-name interface))
Note: See TracChangeset
for help on using the changeset viewer.