(text, pos, 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); |
| 10750 | } |
| 10751 | ts.reduceEachTrailingCommentRange = reduceEachTrailingCommentRange; |
| 10752 | function appendCommentRange(pos, end, kind, hasTrailingNewLine, _state, comments) { |
| 10753 | if (!comments) { |
no test coverage detected
searching dependent graphs…