Decl is any code declaration that has dead-code elimination (DCE) information attached to it.
| 8 | // Decl is any code declaration that has dead-code elimination (DCE) |
| 9 | // information attached to it. |
| 10 | type Decl interface { |
| 11 | Dce() *Info |
| 12 | } |
| 13 | |
| 14 | // Collector is a tool to collect dependencies for a declaration |
| 15 | // that'll be used in dead-code elimination (DCE). |
no outgoing calls
no test coverage detected
searching dependent graphs…