(node)
| 46055 | } |
| 46056 | } |
| 46057 | function bindVariableDeclarationFlow(node) { |
| 46058 | bindEachChild(node); |
| 46059 | if (node.initializer || ts.isForInOrOfStatement(node.parent.parent)) { |
| 46060 | bindInitializedVariableFlow(node); |
| 46061 | } |
| 46062 | } |
| 46063 | function bindBindingElementFlow(node) { |
| 46064 | if (ts.isBindingPattern(node.name)) { |
| 46065 | // When evaluating a binding pattern, the initializer is evaluated before the binding pattern, per: |
no test coverage detected