(type, checker)
| 19708 | } |
| 19709 | ts.getObjectFlags = getObjectFlags; |
| 19710 | function typeHasCallOrConstructSignatures(type, checker) { |
| 19711 | return checker.getSignaturesOfType(type, 0 /* SignatureKind.Call */).length !== 0 || checker.getSignaturesOfType(type, 1 /* SignatureKind.Construct */).length !== 0; |
| 19712 | } |
| 19713 | ts.typeHasCallOrConstructSignatures = typeHasCallOrConstructSignatures; |
| 19714 | function forSomeAncestorDirectory(directory, callback) { |
| 19715 | return !!ts.forEachAncestorDirectory(directory, function (d) { return callback(d) ? true : undefined; }); |
no outgoing calls
no test coverage detected