1
2
3
4
5
6
7
8
9
#[derive(Debug, PartialEq)]
pub enum Type {
    Number = 0,
    Bool = 1,
    String = 2,
    Null = 3,
    Object = 4,
    Array = 5,
}