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

Function isTypeDeclarationName

test/fixtures/snapshot/typescript.js:86158–86162  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

86156 }
86157 }
86158 function isTypeDeclarationName(name) {
86159 return name.kind === 79 /* SyntaxKind.Identifier */ &&
86160 isTypeDeclaration(name.parent) &&
86161 ts.getNameOfDeclaration(name.parent) === name;
86162 }
86163 function isTypeDeclaration(node) {
86164 switch (node.kind) {
86165 case 163 /* SyntaxKind.TypeParameter */:

Callers 1

getTypeOfNodeFunction · 0.85

Calls 1

isTypeDeclarationFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…