Changeset 13107
- Timestamp:
- 12/28/10 20:51:37 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/Java.java
r13103 r13107 1056 1056 }; 1057 1057 1058 private static final Primitive JNULL_REF = new pf_jnull_ref();1058 private static final Primitive JNULL_REF_P = new pf_jnull_ref_p(); 1059 1059 @DocString(name="jnull-ref", args="object", 1060 1060 doc="Returns a non-NIL value when the JAVA-OBJECT `object` is `null`,\n" 1061 1061 + "or signals a TYPE-ERROR condition if the object isn't of\n" 1062 1062 + "the right type.") 1063 private static final class pf_jnull_ref extends Primitive1064 { 1065 pf_jnull_ref ()1063 private static final class pf_jnull_ref_p extends Primitive 1064 { 1065 pf_jnull_ref_p() 1066 1066 { 1067 1067 super("jnull-ref", PACKAGE_JAVA, true);
Note: See TracChangeset
for help on using the changeset viewer.