fastexpr-rs 1.0.2

A tiny, fast Javascript expression parser
Documentation
---
source: src/lexer.rs
expression: "lex(\", ; ( ) [ ] { } . ?. => ...\")"
---
Ok(
    [
        Comma,
        Semicolon,
        LParen,
        RParen,
        LBracket,
        RBracket,
        LBrace,
        RBrace,
        Dot,
        QuestionDot,
        EqGt,
        DotDotDot,
        Eof,
    ],
)