(flags ast.FlowFlags, node *ast.Node, antecedent *ast.FlowNode)
| 458 | } |
| 459 | |
| 460 | func (b *Binder) newFlowNodeEx(flags ast.FlowFlags, node *ast.Node, antecedent *ast.FlowNode) *ast.FlowNode { |
| 461 | result := b.newFlowNode(flags) |
| 462 | result.Node = node |
| 463 | result.Antecedent = antecedent |
| 464 | return result |
| 465 | } |
| 466 | |
| 467 | func (b *Binder) createLoopLabel() *ast.FlowLabel { |
| 468 | return b.newFlowNode(ast.FlowFlagsLoopLabel) |
no test coverage detected