MCPcopy Create free account
hub / github.com/compilets/compilets / printParameters

Method printParameters

src/cpp-syntax.ts:710–715  ·  view source on GitHub ↗
(ctx: PrintContext, parameters: ParameterDeclaration[])

Source from the content-addressed store, hash-verified

708 }
709
710 static printParameters(ctx: PrintContext, parameters: ParameterDeclaration[]) {
711 if (parameters.length > 0)
712 return parameters.map(p => p.print(ctx)).join(', ');
713 else
714 return '';
715 }
716}
717
718export abstract class ClassElement extends NamedDeclaration {

Callers 5

printMethod · 0.80
printMethod · 0.80
printMethod · 0.80
printMethod · 0.80
printClassBindingFunction · 0.80

Calls 2

joinMethod · 0.45
printMethod · 0.45

Tested by

no test coverage detected