refactor(traverse): reorder imports (#7264)

This commit is contained in:
overlookmotel 2024-11-13 11:02:37 +00:00
parent 9c91151603
commit 7a4872818e

View file

@ -18,10 +18,10 @@ use crate::{
mod ancestry; mod ancestry;
mod bound_identifier; mod bound_identifier;
mod scoping;
use ancestry::PopToken; use ancestry::PopToken;
pub use ancestry::TraverseAncestry; pub use ancestry::TraverseAncestry;
pub use bound_identifier::BoundIdentifier; pub use bound_identifier::BoundIdentifier;
mod scoping;
pub use scoping::TraverseScoping; pub use scoping::TraverseScoping;
/// Traverse context. /// Traverse context.