()
| 5563 | } |
| 5564 | |
| 5565 | public Object eval() { |
| 5566 | if(isDeftype()) |
| 5567 | return null; |
| 5568 | try |
| 5569 | { |
| 5570 | return getCompiledClass().getDeclaredConstructor().newInstance(); |
| 5571 | } |
| 5572 | catch(Exception e) |
| 5573 | { |
| 5574 | throw Util.sneakyThrow(e); |
| 5575 | } |
| 5576 | } |
| 5577 | |
| 5578 | public void emitLetFnInits(GeneratorAdapter gen, ObjExpr objx, IPersistentSet letFnLocals){ |
| 5579 | //objx arg is enclosing objx, not this |
no test coverage detected