Files
rust/compiler
Nicholas Nethercote 2e7de1a924 Reduce scope of AstValidator::with_* calls.
`AstValidator` has several `with_*` methods, each one setting a field
that adjust how checking takes place for items within certain other
items. E.g. `with_in_trait_impl` is used to adjust the checking done on
items inside an `impl` item. Weirdly, the scopes used for most of the
`with_*` calls are very broad, and include things that aren't "inside"
the item, such as visibility, unsafety, and constness.

This commit minimizes the scope of these `with_*` calls so they only
apply to the things inside the item.
2025-04-02 15:43:11 +11:00
..
2025-04-01 16:07:23 +11:00
2025-03-23 18:18:47 +00:00
2025-04-01 07:34:23 +11:00
2025-03-15 06:34:36 +00:00
2025-03-28 12:14:09 +00:00