(Namespace ns, Symbol sym)
| 175 | } |
| 176 | |
| 177 | Var(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 | |
| 185 | Var(Namespace ns, Symbol sym, Object root){ |
| 186 | this(ns, sym); |