(id int)
| 180 | } |
| 181 | |
| 182 | func newTaskNode(id int) *taskNodeImpl { |
| 183 | return &taskNodeImpl{ |
| 184 | id: id, |
| 185 | parent: nil, |
| 186 | attributes: make(map[string]string), |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | func (t *taskNodeImpl) ID() int { |
| 191 | return t.id |
no outgoing calls
no test coverage detected