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

Method elideMeta

src/jvm/clojure/lang/Compiler.java:292–304  ·  view source on GitHub ↗
(Object m)

Source from the content-addressed store, hash-verified

290 }
291
292 static Object elideMeta(Object m){
293 Collection<Object> elides = (Collection<Object>) getCompilerOption(elideMetaKey);
294 if(elides != null)
295 {
296 for(Object k : elides)
297 {
298// System.out.println("Eliding:" + k + " : " + RT.get(m, k));
299 m = RT.dissoc(m, k);
300 }
301// System.out.println("Remaining: " + RT.keys(m));
302 }
303 return m;
304 }
305
306//Integer
307static final public Var LINE = Var.create(0).setDynamic();

Callers 2

parseMethod · 0.80
emitValueMethod · 0.80

Calls 2

getCompilerOptionMethod · 0.95
dissocMethod · 0.95

Tested by

no test coverage detected