(text, pos, cb, state)
| 10734 | return accumulator; |
| 10735 | } |
| 10736 | function forEachLeadingCommentRange(text, pos, cb, state) { |
| 10737 | return iterateCommentRanges(/*reduce*/ false, text, pos, /*trailing*/ false, 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); |
nothing calls this directly
no test coverage detected
searching dependent graphs…