()
| 469 | } |
| 470 | |
| 471 | func (b *Binder) createBranchLabel() *ast.FlowLabel { |
| 472 | return b.newFlowNode(ast.FlowFlagsBranchLabel) |
| 473 | } |
| 474 | |
| 475 | func (b *Binder) createReduceLabel(target *ast.FlowLabel, antecedents *ast.FlowList, antecedent *ast.FlowNode) *ast.FlowNode { |
| 476 | return b.newFlowNodeEx(ast.FlowFlagsReduceLabel, ast.NewFlowReduceLabelData(target, antecedents), antecedent) |
no test coverage detected