(content, start, length)
| 31360 | ts.updateSourceFile = updateSourceFile; |
| 31361 | /* @internal */ |
| 31362 | function parseIsolatedJSDocComment(content, start, length) { |
| 31363 | var result = Parser.JSDocParser.parseIsolatedJSDocComment(content, start, length); |
| 31364 | if (result && result.jsDoc) { |
| 31365 | // because the jsDocComment was parsed out of the source file, it might |
| 31366 | // not be covered by the fixupParentReferences. |
| 31367 | Parser.fixupParentReferences(result.jsDoc); |
| 31368 | } |
| 31369 | return result; |
| 31370 | } |
| 31371 | ts.parseIsolatedJSDocComment = parseIsolatedJSDocComment; |
| 31372 | /* @internal */ |
| 31373 | // Exposed only for testing. |
nothing calls this directly
no test coverage detected
searching dependent graphs…