(Object m)
| 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 |
| 307 | static final public Var LINE = Var.create(0).setDynamic(); |
no test coverage detected