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

Method Var

src/jvm/clojure/lang/Var.java:177–183  ·  view source on GitHub ↗
(Namespace ns, Symbol sym)

Source from the content-addressed store, hash-verified

175}
176
177Var(Namespace ns, Symbol sym){
178 this.ns = ns;
179 this.sym = sym;
180 this.threadBound = new AtomicBoolean(false);
181 this.root = new Unbound(this);
182 setMeta(PersistentHashMap.EMPTY);
183}
184
185Var(Namespace ns, Symbol sym, Object root){
186 this(ns, sym);

Callers

nothing calls this directly

Calls 1

setMetaMethod · 0.95

Tested by

no test coverage detected