(content, start, length)
| 31372 | /* @internal */ |
| 31373 | // Exposed only for testing. |
| 31374 | function parseJSDocTypeExpressionForTests(content, start, length) { |
| 31375 | return Parser.JSDocParser.parseJSDocTypeExpressionForTests(content, start, length); |
| 31376 | } |
| 31377 | ts.parseJSDocTypeExpressionForTests = parseJSDocTypeExpressionForTests; |
| 31378 | // Implement the parser as a singleton module. We do this for perf reasons because creating |
| 31379 | // parser instances can actually be expensive enough to impact us on projects with many source |
nothing calls this directly
no test coverage detected
searching dependent graphs…