3个版本
0.1.2 | 2022年10月12日 |
---|---|
0.1.1 | 2022年7月7日 |
0.1.0 | 2021年12月29日 |
在 文本编辑器 中排名 233
每月下载量 99
8MB
253K SLoC
tree-sitter-qmljs
QML 语法用于 tree-sitter 解析库。
参考
陷阱
由于分组绑定符号在语法上存在歧义,因此它被解析为对象定义。
// (ui_object_definition type_name: (identifier "Button") ...)
Button {
// (ui_object_definition type_name: (identifier "icon") ...)
icon { source: "foo.png"; color: "transparent" }
}
构建
使用包含所有生成文件的 master
分支。
$ git checkout master
$ npm install
$ cargo build --release
开发
使用 dev
分支,但您首先需要在 master
分支中运行 npm install
。
$ git checkout master
$ npm install
$ git checkout dev
生成代码和运行测试
$ make generate tests
确保示例QML文件可以被解析
$ make fetch-examples parse-examples
依赖关系
~2.7–4MB
~71K SLoC