#luau #parser #incremental

tree-sitter-luau-fork

tree-sitter解析库的Luau语法(源自tree-sitter-grammars/tree-sitter-luau-fork的分支)

4个版本

0.1.3 2024年7月28日
0.1.2 2024年7月28日
0.1.1 2024年7月28日
0.1.0 2024年7月28日

#153文本编辑器

Download history 208/week @ 2024-07-28 56/week @ 2024-08-04 27/week @ 2024-08-11

291 每月下载量
用于 md-tui

MIT 许可证

695KB
27K SLoC

C 26K SLoC Scheme 330 SLoC // 0.1% comments JavaScript 291 SLoC // 0.1% comments Rust 37 SLoC // 0.3% comments

tree-sitter-luau-fork

Build Status

tree-sitter的Luau语法。

来自语法规范的适配。

源自tree-sitter-luau


lib.rs:

此crate为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
~72K SLoC