(node *ast.Node)
| 2135 | } |
| 2136 | |
| 2137 | func (b *Binder) bindExpressionStatement(node *ast.Node) { |
| 2138 | stmt := node.AsExpressionStatement() |
| 2139 | b.bind(stmt.Expression) |
| 2140 | b.maybeBindExpressionFlowIfCall(stmt.Expression) |
| 2141 | } |
| 2142 | |
| 2143 | func (b *Binder) maybeBindExpressionFlowIfCall(node *ast.Node) { |
| 2144 | // A top level or comma expression call expression with a dotted function name and at least one argument |
no test coverage detected