(text, pos, cb, state)
| 10738 | } |
| 10739 | ts.forEachLeadingCommentRange = forEachLeadingCommentRange; |
| 10740 | function forEachTrailingCommentRange(text, pos, cb, state) { |
| 10741 | return iterateCommentRanges(/*reduce*/ false, text, pos, /*trailing*/ true, cb, state); |
| 10742 | } |
| 10743 | ts.forEachTrailingCommentRange = forEachTrailingCommentRange; |
| 10744 | function reduceEachLeadingCommentRange(text, pos, cb, state, initial) { |
| 10745 | return iterateCommentRanges(/*reduce*/ true, text, pos, /*trailing*/ false, cb, state, initial); |
nothing calls this directly
no test coverage detected