Searched refs:rawItems (Results 1 – 1 of 1) sorted by relevance
/third_party/typescript/src/services/ |
D | navigateTo.ts | 14 const rawItems: RawNavigateToItem[] = []; constant 25 …msFromNamedDeclaration(patternMatcher, name, declarations, checker, sourceFile.fileName, rawItems); 29 rawItems.sort(compareNavigateToItems); 30 …return (maxResultCount === undefined ? rawItems : rawItems.slice(0, maxResultCount)).map(createNav… 33 …ations: readonly Declaration[], checker: TypeChecker, fileName: string, rawItems: Push<RawNavigate… 48 …rawItems.push({ name, fileName, matchKind: fullMatch.kind, isCaseSensitive: fullMatch.isCaseSensit… 52 …rawItems.push({ name, fileName, matchKind: match.kind, isCaseSensitive: match.isCaseSensitive, dec…
|