(node)
| 78008 | return facts; |
| 78009 | } |
| 78010 | function isExhaustiveSwitchStatement(node) { |
| 78011 | var links = getNodeLinks(node); |
| 78012 | return links.isExhaustive !== undefined ? links.isExhaustive : (links.isExhaustive = computeExhaustiveSwitchStatement(node)); |
| 78013 | } |
| 78014 | function computeExhaustiveSwitchStatement(node) { |
| 78015 | if (node.expression.kind === 216 /* SyntaxKind.TypeOfExpression */) { |
| 78016 | var operandType = getTypeOfExpression(node.expression.expression); |
no test coverage detected