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

Function isTypeReferenceWithGenericArguments

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

Source from the content-addressed store, hash-verified

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 }
67073 function getGenericTypeReferenceRelationKey(source, target, postFix, ignoreConstraints) {
67074 var typeParameters = [];
67075 var constraintMarker = "";

Callers 2

getTypeReferenceIdFunction · 0.85
getRelationKeyFunction · 0.85

Calls 3

getTypeArgumentsFunction · 0.85
someMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…