(writer: Writer)
| 17 | } |
| 18 | |
| 19 | override write(writer: Writer): void { |
| 20 | writer.write(this.#name).write('(').writeJoined(', ', this.#args).write(')') |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | export function functionCall(name: string, args: ValueBuilder[] = []): FunctionCall { |
nothing calls this directly
no test coverage detected