(value, tag)
| 26680 | // Utilities |
| 26681 | // |
| 26682 | function createTypeCheck(value, tag) { |
| 26683 | return tag === "undefined" |
| 26684 | ? factory.createStrictEquality(value, createVoidZero()) |
| 26685 | : factory.createStrictEquality(createTypeOfExpression(value), createStringLiteral(tag)); |
| 26686 | } |
| 26687 | function createMethodCall(object, methodName, argumentsList) { |
| 26688 | // Preserve the optionality of `object`. |
| 26689 | if (ts.isCallChain(object)) { |
nothing calls this directly
no test coverage detected