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

Function isAbstractConstructorSymbol

test/fixtures/snapshot/typescript.js:19693–19699  ·  view source on GitHub ↗
(symbol)

Source from the content-addressed store, hash-verified

19691 }
19692 ts.mutateMap = mutateMap;
19693 function isAbstractConstructorSymbol(symbol) {
19694 if (symbol.flags & 32 /* SymbolFlags.Class */) {
19695 var declaration = getClassLikeDeclarationOfSymbol(symbol);
19696 return !!declaration && hasSyntacticModifier(declaration, 128 /* ModifierFlags.Abstract */);
19697 }
19698 return false;
19699 }
19700 ts.isAbstractConstructorSymbol = isAbstractConstructorSymbol;
19701 function getClassLikeDeclarationOfSymbol(symbol) {
19702 var _a;

Callers

nothing calls this directly

Calls 2

hasSyntacticModifierFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…