Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the type of
AssertModuleSource::available_cgus
.
It's currently a `BTreeSet<Symbol>`, which is a strange type. The `BTreeSet` suggests that element order is important, but `Symbol` is a type whose ordering isn't useful to humans. The ordering of the collection only manifests in an obscure error message ("no module named `...`") that doesn't appear in any tests. This commit changes the `Symbol` to a `String`, which is more typical.
- Loading branch information