Maker adds a new function to [NodeBase.Makers.Normal], which are called in sequential ascending order in [NodeBase.Make] to make the plan for how the node's children should be configured.
(maker func(p *Plan))
| 74 | // ascending order in [NodeBase.Make] to make the plan for how the node's children |
| 75 | // should be configured. |
| 76 | func (nb *NodeBase) Maker(maker func(p *Plan)) { |
| 77 | nb.Makers.Normal = append(nb.Makers.Normal, maker) |
| 78 | } |
| 79 | |
| 80 | // FirstMaker adds a new function to [NodeBase.Makers.First], which are called in sequential |
| 81 | // ascending order in [NodeBase.Make] to make the plan for how the node's children |
no outgoing calls
no test coverage detected