Returns an empty use list which doesn't contain any uses.
()
| 351 | impl UseList { |
| 352 | /// Returns an empty use list which doesn't contain any uses. |
| 353 | pub fn empty() -> Self { |
| 354 | Self { from: 0, to: 0 } |
| 355 | } |
| 356 | |
| 357 | /// Indicates that the live range that contains this use list is live-in |
| 358 | /// from a preceding segment at the start of the live range. |
nothing calls this directly
no outgoing calls
no test coverage detected