FileResAutoEdges holds the state of the auto edge generator.
| 1596 | |
| 1597 | // FileResAutoEdges holds the state of the auto edge generator. |
| 1598 | type FileResAutoEdges struct { |
| 1599 | // We do all of these first... |
| 1600 | frags []engine.ResUID |
| 1601 | fdone bool |
| 1602 | |
| 1603 | // Then this is the second part... |
| 1604 | data []engine.ResUID |
| 1605 | pointer int |
| 1606 | found bool |
| 1607 | } |
| 1608 | |
| 1609 | // Next returns the next automatic edge. |
| 1610 | func (obj *FileResAutoEdges) Next() []engine.ResUID { |
nothing calls this directly
no outgoing calls
no test coverage detected