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
use swc_ecma_ast::VarDeclKind;

#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum ScopeKind {
    Block,
    #[default]
    Fn,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum IdentType {
    Binding,
    Ref,
    Label,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum DeclKind {
    Lexical,
    Param,
    Var,
    Function,
    /// don't actually get stored
    Type,
}

impl From<VarDeclKind> for DeclKind {
    fn from(kind: VarDeclKind) -> Self {
        match kind {
            VarDeclKind::Const | VarDeclKind::Let => Self::Lexical,
            VarDeclKind::Var => Self::Var,
        }
    }
}