(commentPos, commentEnd, kind, hasTrailingNewLine, rangePos)
| 114874 | } |
| 114875 | } |
| 114876 | function emitTripleSlashLeadingComment(commentPos, commentEnd, kind, hasTrailingNewLine, rangePos) { |
| 114877 | if (isTripleSlashComment(commentPos, commentEnd)) { |
| 114878 | emitLeadingComment(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); |
nothing calls this directly
no test coverage detected