MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / writeParameters

Function writeParameters

packages/transpiler/src/AstPrinterBase.ts:95–99  ·  view source on GitHub ↗
(parameters: cs.ParameterDeclaration[])

Source from the content-addressed store, hash-verified

93 protected abstract writeParameter(p: cs.ParameterDeclaration): void;
94
95 protected writeParameters(parameters: cs.ParameterDeclaration[]) {
96 this.write('(');
97 this.writeCommaSeparated(parameters, p => this.writeParameter(p));
98 this.write(')');
99 }
100
101 protected writeAttributes(d: cs.AttributedElement) {
102 if (d.attributes) {

Callers

nothing calls this directly

Calls 2

writeMethod · 0.65
writeParameterMethod · 0.45

Tested by

no test coverage detected