Home
last modified time | relevance | path

Searched refs:isTypeKeyword (Results 1 – 3 of 3) sorted by relevance

/third_party/typescript/src/services/
Dcompletions.ts543 …if (isTypeOnlyLocation && isTypeKeyword(stringToToken(keywordEntry.name)!) || !uniqueNames.has(key…
4033 || isTypeKeyword(kind) && kind !== SyntaxKind.UndefinedKeyword;
4043 return isTypeKeyword(kind) || kind === SyntaxKind.ConstKeyword;
4045 return isTypeKeyword(kind);
DfindAllReferences.ts897 if (isTypeKeyword(node.kind)) {
Dutilities.ts1864 export function isTypeKeyword(kind: SyntaxKind): boolean { function