(Object arg1)
| 243 | //final static Var IMPORTS = Var.intern(CLOJURE_NS, Symbol.intern("*imports*"), DEFAULT_IMPORTS); |
| 244 | final static IFn inNamespace = new AFn(){ |
| 245 | public Object invoke(Object arg1) { |
| 246 | Symbol nsname = (Symbol) arg1; |
| 247 | Namespace ns = Namespace.findOrCreate(nsname); |
| 248 | CURRENT_NS.set(ns); |
| 249 | return ns; |
| 250 | } |
| 251 | }; |
| 252 | |
| 253 | final static IFn bootNamespace = new AFn(){ |
nothing calls this directly
no test coverage detected