(text, pos)
| 10757 | return comments; |
| 10758 | } |
| 10759 | function getLeadingCommentRanges(text, pos) { |
| 10760 | return reduceEachLeadingCommentRange(text, pos, appendCommentRange, /*state*/ undefined, /*initial*/ undefined); |
| 10761 | } |
| 10762 | ts.getLeadingCommentRanges = getLeadingCommentRanges; |
| 10763 | function getTrailingCommentRanges(text, pos) { |
| 10764 | return reduceEachTrailingCommentRange(text, pos, appendCommentRange, /*state*/ undefined, /*initial*/ undefined); |
nothing calls this directly
no test coverage detected
searching dependent graphs…