Remove a class from the resolving set when resolution is complete.
(fqn: &str)
| 564 | |
| 565 | /// Remove a class from the resolving set when resolution is complete. |
| 566 | fn unmark_resolving(fqn: &str) { |
| 567 | RESOLVING.with(|set| set.borrow_mut().remove(fqn)); |
| 568 | } |
| 569 | |
| 570 | // ─── Eager class population ───────────────────────────────────────────────── |
| 571 |
no test coverage detected