(parameters: cs.ParameterDeclaration[])
| 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) { |
nothing calls this directly
no test coverage detected