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

Function isNonDeferredTypeReference

test/fixtures/snapshot/typescript.js:67067–67069  ·  view source on GitHub ↗
(type)

Source from the content-addressed store, hash-verified

67065 return type.flags & 262144 /* TypeFlags.TypeParameter */ && !getConstraintOfTypeParameter(type);
67066 }
67067 function isNonDeferredTypeReference(type) {
67068 return !!(ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */) && !type.node;
67069 }
67070 function isTypeReferenceWithGenericArguments(type) {
67071 return isNonDeferredTypeReference(type) && ts.some(getTypeArguments(type), function (t) { return !!(t.flags & 262144 /* TypeFlags.TypeParameter */) || isTypeReferenceWithGenericArguments(t); });
67072 }

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…