(target *FlowLabel, antecedents *FlowList)
| 68 | } |
| 69 | |
| 70 | func NewFlowReduceLabelData(target *FlowLabel, antecedents *FlowList) *Node { |
| 71 | node := &FlowReduceLabelData{} |
| 72 | node.Target = target |
| 73 | node.Antecedents = antecedents |
| 74 | return newNode(KindUnknown, node, NodeFactoryHooks{}) |
| 75 | } |
no test coverage detected