(checker, type, expr)
| 151935 | return ts.emptyArray; |
| 151936 | } |
| 151937 | function getPossiblyAwaitedRightHandSide(checker, type, expr) { |
| 151938 | var rightHandSide = ts.getSynthesizedDeepClone(expr); |
| 151939 | return !!checker.getPromisedTypeOfPromise(type) ? ts.factory.createAwaitExpression(rightHandSide) : rightHandSide; |
| 151940 | } |
| 151941 | function getLastCallSignature(type, checker) { |
| 151942 | var callSignatures = checker.getSignaturesOfType(type, 0 /* SignatureKind.Call */); |
| 151943 | return ts.lastOrUndefined(callSignatures); |
no outgoing calls
no test coverage detected