oak-rust 0.0.11

High-performance incremental Rust parser for the oak ecosystem with flexible configuration, emphasizing memory safety and zero-cost abstractions.
Documentation
{
    "success": true,
    "count": 7,
    "tokens": [
        {
            "kind": "Keyword(Pub)",
            "text": "pub",
            "start": 0,
            "end": 3
        },
        {
            "kind": "Keyword(Use)",
            "text": "use",
            "start": 4,
            "end": 7
        },
        {
            "kind": "Identifier",
            "text": "my_module",
            "start": 8,
            "end": 17
        },
        {
            "kind": "PathSep",
            "text": "::",
            "start": 17,
            "end": 19
        },
        {
            "kind": "Identifier",
            "text": "MyType",
            "start": 19,
            "end": 25
        },
        {
            "kind": "Semicolon",
            "text": ";",
            "start": 25,
            "end": 26
        },
        {
            "kind": "Eof",
            "text": "",
            "start": 26,
            "end": 26
        }
    ],
    "errors": []
}