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

Method hasJavaClass

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

Source from the content-addressed store, hash-verified

6551 Boolean hjc;
6552
6553 public boolean hasJavaClass() {
6554 if (hjc == null)
6555 {
6556 if(init != null && init.hasJavaClass() && Util.isPrimitive(init.getJavaClass()) && !(init instanceof MaybePrimitiveExpr))
6557 hjc = false;
6558 else
6559 hjc = tag != null || (init != null && init.hasJavaClass());
6560 }
6561 return hjc;
6562 }
6563
6564 Class jc;
6565

Callers

nothing calls this directly

Calls 3

isPrimitiveMethod · 0.95
hasJavaClassMethod · 0.65
getJavaClassMethod · 0.65

Tested by

no test coverage detected