(args: Expression[], parameters: Type[])
| 422 | args: Expression[]; |
| 423 | |
| 424 | constructor(args: Expression[], parameters: Type[]) { |
| 425 | this.args = castArguments(args, parameters); |
| 426 | } |
| 427 | |
| 428 | print(ctx: PrintContext) { |
| 429 | return this.args.map(a => a.print(ctx)).join(', '); |
nothing calls this directly
no test coverage detected