(node *ast.Node)
| 2336 | } |
| 2337 | |
| 2338 | func (b *Binder) bindAccessExpressionFlow(node *ast.Node) { |
| 2339 | if ast.IsOptionalChain(node) { |
| 2340 | b.bindOptionalChainFlow(node) |
| 2341 | } else { |
| 2342 | b.bindEachChild(node) |
| 2343 | } |
| 2344 | } |
| 2345 | |
| 2346 | func (b *Binder) bindOptionalChainFlow(node *ast.Node) { |
| 2347 | if isTopLevelLogicalExpression(node) { |
no test coverage detected