| 644 | // local function binding statement |
| 645 | struct LocalFunction : public Statement { |
| 646 | LocalFunction(Name v, Lambda *l) : name(v), lambda(l) { } |
| 647 | virtual void transpile(Transpiler& transpiler) |
| 648 | { |
| 649 | fprintf(transpiler.out, "(letrec ((" LUA_NAME_FORMAT " ", name->c_str()); |
nothing calls this directly
no outgoing calls
no test coverage detected