mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-08 01:28:18 +03:00
3354876876
cache test item names This avoids quadratic behavior (collecting all test item names for each `eq_op` instance within the module). However, it invests a good deal of memory to buy this speedup. If that becomes a problem, I may need to change the cache to only store the chain of last visited modules. This hopefully fixes #8171. --- changelog: none