mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-30 07:15:48 +00:00
Use `ControlFlow` results for visitors that are only looking for a single value These visitors all had a `Option<Value>` or `bool` field, that, once set, was never unset or modified again. They have been refactored by removing the field and returning `ControlFlow` directly from the visitor