MCPcopy Index your code
hub / github.com/nodejs/node / parseIsolatedJSDocComment

Function parseIsolatedJSDocComment

test/fixtures/snapshot/typescript.js:31362–31370  ·  view source on GitHub ↗
(content, start, length)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 4

initializeStateFunction · 0.85
doInsideOfContextFunction · 0.85
parseJSDocCommentWorkerFunction · 0.85
clearStateFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…