efx-core 1.1.1

Core parser and AST for EFx proc-macro
Documentation
1
2
3
4
5
6
7
8
9
#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) enum Tok {
    LAngle,       // <
    RAngle,       // >
    Slash,        // /
    LBrace,       // {
    RBrace,       // }
    Text(String), // arbitrary text without special characters
}