(node, sourceFile)
| 135547 | } |
| 135548 | DocumentHighlights.getDocumentHighlights = getDocumentHighlights; |
| 135549 | function getHighlightSpanForNode(node, sourceFile) { |
| 135550 | return { |
| 135551 | fileName: sourceFile.fileName, |
| 135552 | textSpan: ts.createTextSpanFromNode(node, sourceFile), |
| 135553 | kind: "none" /* HighlightSpanKind.none */ |
| 135554 | }; |
| 135555 | } |
| 135556 | function getSemanticDocumentHighlights(position, node, program, cancellationToken, sourceFilesToSearch) { |
| 135557 | var sourceFilesSet = new ts.Set(sourceFilesToSearch.map(function (f) { return f.fileName; })); |
| 135558 | var referenceEntries = ts.FindAllReferences.getReferenceEntriesForNode(position, node, program, sourceFilesToSearch, cancellationToken, /*options*/ undefined, sourceFilesSet); |
no outgoing calls
no test coverage detected