--- Common Node Implementation Details ---
| 110 | // --- Common Node Implementation Details --- |
| 111 | |
| 112 | type nodeCore struct { |
| 113 | params map[string]any |
| 114 | successors map[string]BaseNode |
| 115 | } |
| 116 | |
| 117 | func (n *nodeCore) initCore() { |
| 118 | if n.params == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected