(antecedent *ast.FlowNode, switchStatement *ast.Node, clauseStart int, clauseEnd int)
| 507 | } |
| 508 | |
| 509 | func (b *Binder) createFlowSwitchClause(antecedent *ast.FlowNode, switchStatement *ast.Node, clauseStart int, clauseEnd int) *ast.FlowNode { |
| 510 | setFlowNodeReferenced(antecedent) |
| 511 | return b.newFlowNodeEx(ast.FlowFlagsSwitchClause, ast.NewFlowSwitchClauseData(switchStatement, clauseStart, clauseEnd), antecedent) |
| 512 | } |
| 513 | |
| 514 | func (b *Binder) createFlowCall(antecedent *ast.FlowNode, node *ast.Node) *ast.FlowNode { |
| 515 | setFlowNodeReferenced(antecedent) |
no test coverage detected