Function
visitParams
(params: o.FnParam[], ctx: EmitterVisitorContext)
Source from the content-addressed store, hash-verified
| 674 | } |
| 675 | |
| 676 | protected visitParams(params: o.FnParam[], ctx: EmitterVisitorContext): void { |
| 677 | this.visitAllObjects( |
| 678 | (param) => { |
| 679 | ctx.print(null, param.name); |
| 680 | param.type?.visitType(this, ctx); |
| 681 | }, |
| 682 | params, |
| 683 | ctx, |
| 684 | ', ', |
| 685 | ); |
| 686 | } |
| 687 | |
| 688 | protected shouldParenthesize( |
| 689 | expression: o.Expression, |
Callers
nothing calls this directly
Tested by
no test coverage detected