===== Embeddable base types ===== LinearNode is embedded by nodes with at most one target per port
| 87 | |
| 88 | // LinearNode is embedded by nodes with at most one target per port |
| 89 | type LinearNode struct { |
| 90 | id string |
| 91 | transitions map[string]Transition // port → transition |
| 92 | } |
| 93 | |
| 94 | // NewLinearNode creates a new LinearNode |
| 95 | func NewLinearNode(id string) LinearNode { |
nothing calls this directly
no outgoing calls
no test coverage detected