(text, pos, cb, state, initial)
| 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); |
| 10746 | } |
| 10747 | ts.reduceEachLeadingCommentRange = reduceEachLeadingCommentRange; |
| 10748 | function reduceEachTrailingCommentRange(text, pos, cb, state, initial) { |
| 10749 | return iterateCommentRanges(/*reduce*/ true, text, pos, /*trailing*/ true, cb, state, initial); |
no test coverage detected
searching dependent graphs…