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

Method getJavaClass

src/jvm/clojure/lang/Compiler.java:5639–5645  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5637
5638 Class jc;
5639 public Class getJavaClass() {
5640 if (jc == null)
5641 jc = (compiledClass != null) ? compiledClass
5642 : (tag != null) ? HostExpr.tagToClass(tag)
5643 : IFn.class;
5644 return jc;
5645 }
5646
5647 public void emitAssignLocal(GeneratorAdapter gen, LocalBinding lb,Expr val){
5648 if(!isMutable(lb))

Callers

nothing calls this directly

Calls 1

tagToClassMethod · 0.95

Tested by

no test coverage detected