(C context, Object form)
| 706 | |
| 707 | static class Parser implements IParser{ |
| 708 | public Expr parse(C context, Object form) { |
| 709 | Symbol sym = (Symbol) RT.second(form); |
| 710 | Var v = lookupVar(sym, false); |
| 711 | if(v != null) |
| 712 | return new TheVarExpr(v); |
| 713 | throw Util.runtimeException("Unable to resolve var: " + sym + " in this context"); |
| 714 | } |
| 715 | } |
| 716 | } |
| 717 |
nothing calls this directly
no test coverage detected