(comments)
| 37599 | } |
| 37600 | } |
| 37601 | function removeTrailingWhitespace(comments) { |
| 37602 | while (comments.length && comments[comments.length - 1].trim() === "") { |
| 37603 | comments.pop(); |
| 37604 | } |
| 37605 | } |
| 37606 | function isNextNonwhitespaceTokenEndOfFile() { |
| 37607 | // We must use infinite lookahead, as there could be any number of newlines :( |
| 37608 | while (true) { |
no test coverage detected