| 241 | } |
| 242 | |
| 243 | type taskImpl struct { |
| 244 | *taskNodeImpl |
| 245 | text string |
| 246 | priority Priority |
| 247 | created, completed time.Time |
| 248 | } |
| 249 | |
| 250 | func newTask(id int, text string, priority Priority) Task { |
| 251 | return &taskImpl{ |
nothing calls this directly
no outgoing calls
no test coverage detected