@felixtensor/tree-sitter-mlir 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/grammar.js +938 -361
- package/package.json +4 -3
- package/prebuilds/darwin-arm64/@felixtensor+tree-sitter-mlir.node +0 -0
- package/prebuilds/darwin-x64/@felixtensor+tree-sitter-mlir.node +0 -0
- package/prebuilds/linux-arm64/@felixtensor+tree-sitter-mlir.node +0 -0
- package/prebuilds/linux-x64/@felixtensor+tree-sitter-mlir.node +0 -0
- package/prebuilds/win32-arm64/@felixtensor+tree-sitter-mlir.node +0 -0
- package/prebuilds/win32-x64/@felixtensor+tree-sitter-mlir.node +0 -0
- package/src/grammar.json +679 -123
- package/src/node-types.json +17 -61
- package/src/parser.c +52636 -50473
- package/tree-sitter-mlir.wasm +0 -0
- package/tree-sitter.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@felixtensor/tree-sitter-mlir",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "MLIR grammar for tree-sitter",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -55,9 +55,10 @@
|
|
|
55
55
|
"compile": "tree-sitter generate",
|
|
56
56
|
"update-tests": "tree-sitter test --update",
|
|
57
57
|
"test": "tree-sitter test",
|
|
58
|
+
"test:bench": "node --test test/*.test.mjs",
|
|
58
59
|
"test:bindings": "node --test bindings/node/*_test.js",
|
|
59
|
-
"test:examples": "tree-sitter parse --quiet --stat examples/**/*.mlir",
|
|
60
|
-
"test:all": "npm run test && npm run test:examples",
|
|
60
|
+
"test:examples": "tree-sitter parse --quiet --stat \"examples/**/*.mlir\"",
|
|
61
|
+
"test:all": "npm run test && npm run test:bench && npm run test:examples",
|
|
61
62
|
"bench": "node bench.mjs",
|
|
62
63
|
"prebuildify": "prebuildify --napi --strip"
|
|
63
64
|
},
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|