Home
last modified time | relevance | path

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

/third_party/typescript/src/services/
Dutilities.ts1868 export function isTypeKeywordToken(node: Node): node is Token<SyntaxKind.TypeKeyword> { function
1873 return isTypeKeywordToken(node) || isIdentifier(node) && node.text === "type";
2098 return cast(importClause.getChildAt(0, sourceFile), isTypeKeywordToken);