15 releases (8 breaking)

new 0.9.1 Feb 3, 2025
0.8.0 Jan 7, 2025
0.7.0 Dec 12, 2024
0.5.0 Nov 12, 2024

#983 in Parser implementations

Download history 301/week @ 2024-10-21 343/week @ 2024-10-28 144/week @ 2024-11-04 134/week @ 2024-11-11 106/week @ 2024-11-18 90/week @ 2024-11-25 300/week @ 2024-12-02 160/week @ 2024-12-09 7/week @ 2024-12-16 123/week @ 2025-01-06 119/week @ 2025-01-13 12/week @ 2025-01-20

254 downloads per month

MIT license

560KB
15K SLoC

EmmyLua-Parser

EmmyLua-Parser is a parser for Lua5.1, Lua5.2, Lua5.3, Lua5.4, and LuaJIT and also supports EmmyLua/LuaCats annotations. Its purpose is to generate AST and CST from the parsed code for further analysis.

Internationalization (i18n) Support

This crate supports multiple languages, defaulting to English (en-US). Users can optionally initialize i18n to set a different language.

Features

  • Lossless syntax tree generation
  • Easy-to-use API based on the rowan library
  • Support for Lua5.1, Lua5.2, Lua5.3, Lua5.4 and LuaJIT
  • Support for EmmyLua/LuaCats annotations
  • Ability to parse code with syntax errors

Usage

let code = r#"
    local a = 1
    local b = 2
    print(a + b)
"#;
let tree = LuaParser::parse(code, ParserConfig::default());

let chunk = tree.get_chunk_node();
for node in chunk.descendants::<LuaAst>() {
    println!("{:?}", node);
}

Dependencies

~9–20MB
~302K SLoC