| 173 | } |
| 174 | |
| 175 | type taskNodeImpl struct { |
| 176 | id int |
| 177 | tasks []TaskNode |
| 178 | parent TaskNode |
| 179 | attributes map[string]string |
| 180 | } |
| 181 | |
| 182 | func newTaskNode(id int) *taskNodeImpl { |
| 183 | return &taskNodeImpl{ |
nothing calls this directly
no outgoing calls
no test coverage detected