We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f1e6ed commit 716ca67Copy full SHA for 716ca67
src/jvm/clojure/lang/Compiler.java
@@ -177,6 +177,9 @@ public class Compiler implements Opcodes{
177
//null or not
178
static final public Var IN_CATCH_FINALLY = Var.create(null);
179
180
+//DynamicClassLoader
181
+static final public Var LOADER = Var.create();
182
+
183
//String
184
static final public Var SOURCE = Var.intern(Namespace.findOrCreate(Symbol.create("clojure.core")),
185
Symbol.create("*source-path*"), "NO_SOURCE_FILE");
@@ -205,8 +208,6 @@ public class Compiler implements Opcodes{
205
208
//Integer
206
209
static final public Var RET_LOCAL_NUM = Var.create();
207
210
-//DynamicClassLoader
-static final public Var LOADER = Var.create();
211
212
public enum C{
213
STATEMENT, //value ignored
0 commit comments