Changeset 12800
- Timestamp:
- 07/11/10 07:19:13 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/JavaClassLoader.java
r12773 r12800 151 151 }; 152 152 153 // ### make-classloader &optional parent => java-class-loader 153 154 private static final Primitive MAKE_CLASSLOADER = new pf_make_classloader(); 154 155 private static final class pf_make_classloader extends Primitive … … 170 171 }; 171 172 173 // ### dump-classpath &optional classloader => list-of-pathname-lists 172 174 private static final Primitive DUMP_CLASSPATH = new pf_dump_classpath(); 173 175 private static final class pf_dump_classpath extends Primitive … … 196 198 }; 197 199 200 // ### add-to-classpath jar-or-jars &optional (classloader (get-current-classloader)) 198 201 private static final Primitive ADD_TO_CLASSPATH = new pf_add_to_classpath(); 199 202 private static final class pf_add_to_classpath extends Primitive
Note: See TracChangeset
for help on using the changeset viewer.