MCPcopy Index your code
hub / github.com/clojure/clojure / emitVar

Method emitVar

src/jvm/clojure/lang/Compiler.java:5751–5755  ·  view source on GitHub ↗
(GeneratorAdapter gen, Var var)

Source from the content-addressed store, hash-verified

5749 }
5750
5751 public void emitVar(GeneratorAdapter gen, Var var){
5752 Integer i = (Integer) vars.valAt(var);
5753 emitConstant(gen, i);
5754 //gen.getStatic(fntype, munge(var.sym.toString()), VAR_TYPE);
5755 }
5756
5757 final static Method varGetMethod = Method.getMethod("Object get()");
5758 final static Method varGetRawMethod = Method.getMethod("Object getRawRoot()");

Callers 4

emitMethod · 0.80
emitAssignMethod · 0.80
emitMethod · 0.80
emitProtoMethod · 0.80

Calls 2

emitConstantMethod · 0.95
valAtMethod · 0.65

Tested by

no test coverage detected