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

Method findInternedVar

src/jvm/clojure/lang/Namespace.java:229–234  ·  view source on GitHub ↗
(Symbol symbol)

Source from the content-addressed store, hash-verified

227}
228
229public Var findInternedVar(Symbol symbol){
230 Object o = mappings.get().valAt(symbol);
231 if(o != null && o instanceof Var && ((Var) o).ns == this)
232 return (Var) o;
233 return null;
234}
235
236
237public IPersistentMap getAliases(){

Callers 4

findMethod · 0.95
resolveInMethod · 0.95
maybeResolveInMethod · 0.95
lookupVarMethod · 0.95

Calls 2

valAtMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected