| 570 | // function call statement, wraps a function call expression |
| 571 | struct FunctionCall : public Statement { |
| 572 | FunctionCall(Call *c) : call(c) { } |
| 573 | virtual void transpile(Transpiler& transpiler) |
| 574 | { |
| 575 | call->transpile(transpiler); |
nothing calls this directly
no outgoing calls
no test coverage detected