(sig)
| 113409 | emitList(lit, ts.factory.createNodeArray(lit.jsDocPropertyTags), 33 /* ListFormat.JSDocComment */); |
| 113410 | } |
| 113411 | function emitJSDocSignature(sig) { |
| 113412 | if (sig.typeParameters) { |
| 113413 | emitList(sig, ts.factory.createNodeArray(sig.typeParameters), 33 /* ListFormat.JSDocComment */); |
| 113414 | } |
| 113415 | if (sig.parameters) { |
| 113416 | emitList(sig, ts.factory.createNodeArray(sig.parameters), 33 /* ListFormat.JSDocComment */); |
| 113417 | } |
| 113418 | if (sig.type) { |
| 113419 | writeLine(); |
| 113420 | writeSpace(); |
| 113421 | writePunctuation("*"); |
| 113422 | writeSpace(); |
| 113423 | emit(sig.type); |
| 113424 | } |
| 113425 | } |
| 113426 | function emitJSDocPropertyLikeTag(param) { |
| 113427 | emitJSDocTagName(param.tagName); |
| 113428 | emitJSDocTypeExpression(param.typeExpression); |
no test coverage detected