(node)
| 45795 | bindEach(node.statements); |
| 45796 | } |
| 45797 | function bindExpressionStatement(node) { |
| 45798 | bind(node.expression); |
| 45799 | maybeBindExpressionFlowIfCall(node.expression); |
| 45800 | } |
| 45801 | function maybeBindExpressionFlowIfCall(node) { |
| 45802 | // A top level or comma expression call expression with a dotted function name and at least one argument |
| 45803 | // is potentially an assertion and is therefore included in the control flow. |
no test coverage detected