-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathbinder_impls.rs
64 lines (60 loc) · 1.68 KB
/
binder_impls.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//! This module contains impls of `Visit` for those types that
//! introduce binders.
//!
//! The more interesting impls of `Visit` remain in the `visit` module.
use crate::interner::HasInterner;
use crate::{Binders, Canonical, ControlFlow, DebruijnIndex, FnPointer, Interner, Visit, Visitor};
impl<I: Interner> Visit<I> for FnPointer<I> {
fn visit_with<'i, B>(
&self,
visitor: &mut dyn Visitor<'i, I, BreakTy = B>,
outer_binder: DebruijnIndex,
) -> ControlFlow<B>
where
I: 'i,
{
visitor.before_fn_pointer_substs(self.num_binders);
let result = self
.substitution
.visit_with(visitor, outer_binder.shifted_in());
visitor.after_any_binders();
result
}
}
impl<T, I: Interner> Visit<I> for Binders<T>
where
T: HasInterner<Interner = I> + Visit<I>,
{
fn visit_with<'i, B>(
&self,
visitor: &mut dyn Visitor<'i, I, BreakTy = B>,
outer_binder: DebruijnIndex,
) -> ControlFlow<B>
where
I: 'i,
{
visitor.before_binders(&self.binders);
let result = self.value.visit_with(visitor, outer_binder.shifted_in());
visitor.after_any_binders();
result
}
}
impl<I, T> Visit<I> for Canonical<T>
where
I: Interner,
T: HasInterner<Interner = I> + Visit<I>,
{
fn visit_with<'i, B>(
&self,
visitor: &mut dyn Visitor<'i, I, BreakTy = B>,
outer_binder: DebruijnIndex,
) -> ControlFlow<B>
where
I: 'i,
{
visitor.before_canonical(&self.binders);
let result = self.value.visit_with(visitor, outer_binder.shifted_in());
visitor.after_any_binders();
result
}
}