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

Function getIntersectedSignatures

test/fixtures/snapshot/typescript.js:73181–73189  ·  view source on GitHub ↗
(signatures)

Source from the content-addressed store, hash-verified

73179 }
73180 }
73181 function getIntersectedSignatures(signatures) {
73182 return ts.getStrictOptionValue(compilerOptions, "noImplicitAny")
73183 ? ts.reduceLeft(signatures, function (left, right) {
73184 return left === right || !left ? left
73185 : compareTypeParametersIdentical(left.typeParameters, right.typeParameters) ? combineSignaturesOfIntersectionMembers(left, right)
73186 : undefined;
73187 })
73188 : undefined;
73189 }
73190 function combineIntersectionThisParam(left, right, mapper) {
73191 if (!left || !right) {
73192 return left || right;

Callers 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…