efx-core 1.0.0

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
}