leap-lang 0.3.0

Leap language parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[derive(Debug)]
pub enum TreeVariant {
    Start,
    Name(String),
    StructDef,
    TArgsDef,
    TArgs,
    PropsDef,
    Prop,
    EnumDef,
    VariantsDef,
    Variant,
    PType,
    PTArgsBlock,
    PTArgs,
}