(comments)
| 37594 | return finishNode(factory.createJSDocComment(parts.length ? createNodeArray(parts, start, commentsPos) : comments.length ? comments.join("") : undefined, tagsArray), start, end); |
| 37595 | }); |
| 37596 | function removeLeadingNewlines(comments) { |
| 37597 | while (comments.length && (comments[0] === "\n" || comments[0] === "\r")) { |
| 37598 | comments.shift(); |
| 37599 | } |
| 37600 | } |
| 37601 | function removeTrailingWhitespace(comments) { |
| 37602 | while (comments.length && comments[comments.length - 1].trim() === "") { |
| 37603 | comments.pop(); |
no test coverage detected
searching dependent graphs…