2 个稳定版本

1.1.0 2024年1月24日
1.0.0 2023年6月21日

30#luau

MIT 许可证

650KB
25K SLoC

C 24K SLoC • Rust 包仓库 Scheme 328 SLoC // 0.1% comments • Rust 包仓库 JavaScript 279 SLoC // 0.1% comments • Rust 包仓库 Rust 34 SLoC // 0.1% comments • Rust 包仓库

tree-sitter-luau

Build Status Discord

tree-sitter 的 Luau 语法。

改编自 语法规范


lib.rs:

该包为 tree-sitter 解析库提供 Luau 语言支持。

通常,您将使用 language 函数将此语言添加到 tree-sitter 解析器,然后使用解析器解析一些代码

let code = "";
let mut parser = tree_sitter::Parser::new();
parser.set_language(tree_sitter_luau::language()).expect("Error loading Luau grammar");
let tree = parser.parse(code, None).unwrap();

依赖项

~2.7–4MB
~71K SLoC