(text, pos)
| 114884 | } |
| 114885 | } |
| 114886 | function shouldWriteComment(text, pos) { |
| 114887 | if (printerOptions.onlyPrintJsDocStyle) { |
| 114888 | return (ts.isJSDocLikeText(text, pos) || ts.isPinnedComment(text, pos)); |
| 114889 | } |
| 114890 | return true; |
| 114891 | } |
| 114892 | function emitLeadingComment(commentPos, commentEnd, kind, hasTrailingNewLine, rangePos) { |
| 114893 | if (!currentSourceFile || !shouldWriteComment(currentSourceFile.text, commentPos)) |
| 114894 | return; |
no outgoing calls
no test coverage detected
searching dependent graphs…