(node)
| 82657 | return ts.getSelectedEffectiveModifierFlags(left, interestingFlags) === ts.getSelectedEffectiveModifierFlags(right, interestingFlags); |
| 82658 | } |
| 82659 | function checkVariableDeclaration(node) { |
| 82660 | ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("check" /* tracing.Phase.Check */, "checkVariableDeclaration", { kind: node.kind, pos: node.pos, end: node.end, path: node.tracingPath }); |
| 82661 | checkGrammarVariableDeclaration(node); |
| 82662 | checkVariableLikeDeclaration(node); |
| 82663 | ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); |
| 82664 | } |
| 82665 | function checkBindingElement(node) { |
| 82666 | checkGrammarBindingElement(node); |
| 82667 | return checkVariableLikeDeclaration(node); |
no test coverage detected
searching dependent graphs…