summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/core/var.rs
blob: 345848920cab8edefdf2f64eed33915df54b18f5 (plain)
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
65
66
use crate::syntax::{Label, V};

/// Stores an alpha-normalized variable.
#[derive(Clone, Copy, Eq)]
pub struct AlphaVar {
    alpha: V<()>,
}
// TODO: temporary hopefully
impl std::cmp::PartialEq for AlphaVar {
    fn eq(&self, _other: &Self) -> bool {
        true
    }
}

// Exactly like a Label, but equality returns always true.
// This is so that ValueKind equality is exactly alpha-equivalence.
#[derive(Clone, Eq)]
pub struct Binder {
    name: Label,
}

impl AlphaVar {
    pub(crate) fn new(alpha: V<()>) -> Self {
        AlphaVar { alpha }
    }
    pub(crate) fn default() -> Self {
        AlphaVar { alpha: V((), 0) }
    }
    pub(crate) fn idx(&self) -> usize {
        self.alpha.idx()
    }
}

impl Binder {
    pub(crate) fn new(name: Label) -> Self {
        Binder { name }
    }
    pub(crate) fn to_label(&self) -> Label {
        self.clone().into()
    }
}

/// Equality up to alpha-equivalence
impl std::cmp::PartialEq for Binder {
    fn eq(&self, _other: &Self) -> bool {
        true
    }
}

impl std::fmt::Debug for AlphaVar {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "AlphaVar({})", self.alpha.1)
    }
}

impl std::fmt::Debug for Binder {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "Binder({})", &self.name)
    }
}

impl From<Binder> for Label {
    fn from(x: Binder) -> Label {
        x.name
    }
}