fastexpr-rs 1.0.2

A tiny, fast Javascript expression parser
Documentation
---
source: src/parser.rs
expression: "vec![parse(\"{[abc]: 123}\").unwrap()]"
---
[
    Object {
        properties: [
            Property {
                computed: true,
                key: Array {
                    elements: [
                        Identifier {
                            token: Identifier(
                                "abc",
                            ),
                        },
                    ],
                },
                shorthand: false,
                value: Some(
                    Literal {
                        token: Number(
                            123.0,
                        ),
                    },
                ),
            },
        ],
    },
]