(target *ast.FlowLabel, antecedents *ast.FlowList, antecedent *ast.FlowNode)
| 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) |
| 477 | } |
| 478 | |
| 479 | func (b *Binder) createFlowCondition(flags ast.FlowFlags, antecedent *ast.FlowNode, expression *ast.Node) *ast.FlowNode { |
| 480 | if antecedent.Flags&ast.FlowFlagsUnreachable != 0 { |
no test coverage detected