(kind)
| 32235 | parseErrorForMissingSemicolonAfter(name); |
| 32236 | } |
| 32237 | function parseExpectedJSDoc(kind) { |
| 32238 | if (token() === kind) { |
| 32239 | nextTokenJSDoc(); |
| 32240 | return true; |
| 32241 | } |
| 32242 | parseErrorAtCurrentToken(ts.Diagnostics._0_expected, ts.tokenToString(kind)); |
| 32243 | return false; |
| 32244 | } |
| 32245 | function parseExpectedMatchingBrackets(openKind, closeKind, openParsed, openPosition) { |
| 32246 | if (token() === closeKind) { |
| 32247 | nextToken(); |
no test coverage detected