Skip to content

Commit

Permalink
VisitOperator: implement delegates for Box<VisitOperator>
Browse files Browse the repository at this point in the history
This is also fine because `Box` implements DerefMut. Pretty useful for
people (like me) who have a `Box<dyn VisitOperator`, but can't use
`&dyn` because of the borrowck limitations around how it handles HRTBs.
  • Loading branch information
nagisa committed Jan 20, 2023
1 parent 208b2e7 commit 70239bb
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions crates/wasmparser/src/readers/core/operators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,16 +331,24 @@ macro_rules! define_visit_operator_delegate {
($(@$proposal:ident $op:ident $({ $($arg:ident: $argty:ty),* })? => $visit:ident)*) => {
$(
fn $visit(&mut self $($(,$arg: $argty)*)?) -> Self::Output {
V::$visit(*self, $($($arg),*)?)
V::$visit(&mut *self, $($($arg),*)?)
}
)*
}
}

impl<'a, 'b, V: VisitOperator<'a>> VisitOperator<'a> for &'b mut V {
impl<'a, 'b, V: VisitOperator<'a> + ?Sized> VisitOperator<'a> for &'b mut V {
type Output = V::Output;
fn visit_operator(&mut self, op: &Operator<'a>) -> Self::Output {
V::visit_operator(*self, op)
}
for_each_operator!(define_visit_operator_delegate);
}

impl<'a, V: VisitOperator<'a> + ?Sized> VisitOperator<'a> for Box<V> {
type Output = V::Output;
fn visit_operator(&mut self, op: &Operator<'a>) -> Self::Output {
V::visit_operator(&mut *self, op)
}
for_each_operator!(define_visit_operator_delegate);
}

0 comments on commit 70239bb

Please sign in to comment.