MCPcopy Create free account
hub / github.com/angular/angular / visitParams

Function visitParams

packages/compiler/src/output/abstract_emitter.ts:676–686  ·  view source on GitHub ↗
(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

Calls 2

printMethod · 0.45
visitTypeMethod · 0.45

Tested by

no test coverage detected