(text)
| 37496 | // + 1 because the last index of \n is always one index before the first character in the line and coincidentally, if there is no \n before start, it is -1, which is also one index before the first character |
| 37497 | var indent = start - (content.lastIndexOf("\n", start) + 1) + 4; |
| 37498 | function pushComment(text) { |
| 37499 | if (!margin) { |
| 37500 | margin = indent; |
| 37501 | } |
| 37502 | comments.push(text); |
| 37503 | indent += text.length; |
| 37504 | } |
| 37505 | nextTokenJSDoc(); |
| 37506 | while (parseOptionalJsdoc(5 /* SyntaxKind.WhitespaceTrivia */)) |
| 37507 | ; |
no test coverage detected