(antecedent *ast.FlowNode, node *ast.Node)
| 512 | } |
| 513 | |
| 514 | func (b *Binder) createFlowCall(antecedent *ast.FlowNode, node *ast.Node) *ast.FlowNode { |
| 515 | setFlowNodeReferenced(antecedent) |
| 516 | b.hasFlowEffects = true |
| 517 | return b.newFlowNodeEx(ast.FlowFlagsCall, node, antecedent) |
| 518 | } |
| 519 | |
| 520 | func (b *Binder) newFlowList(head *ast.FlowNode, tail *ast.FlowList) *ast.FlowList { |
| 521 | result := b.flowListArena.New() |
no test coverage detected