(commentPos, commentEnd, kind, hasTrailingNewLine, rangePos)
| 114879 | } |
| 114880 | } |
| 114881 | function emitNonTripleSlashLeadingComment(commentPos, commentEnd, kind, hasTrailingNewLine, rangePos) { |
| 114882 | if (!isTripleSlashComment(commentPos, commentEnd)) { |
| 114883 | emitLeadingComment(commentPos, commentEnd, kind, hasTrailingNewLine, rangePos); |
| 114884 | } |
| 114885 | } |
| 114886 | function shouldWriteComment(text, pos) { |
| 114887 | if (printerOptions.onlyPrintJsDocStyle) { |
| 114888 | return (ts.isJSDocLikeText(text, pos) || ts.isPinnedComment(text, pos)); |
nothing calls this directly
no test coverage detected