| 498 | struct FunctionName; |
| 499 | struct Function : public Statement { |
| 500 | Function(FunctionName *f, Lambda *l) : functionname(f), lambda(l) { } |
| 501 | virtual void transpile(Transpiler& transpiler) |
| 502 | { |
| 503 | if (functionname->namelist->size() == 1) |
nothing calls this directly
no outgoing calls
no test coverage detected