tree-sitter-abl 0.0.47
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/.github/workflows/test.yml +43 -0
- package/.prettierrc +7 -0
- package/.vscode/settings.json +3 -0
- package/Cargo.lock +59 -0
- package/Cargo.toml +26 -0
- package/LICENSE +21 -0
- package/README.md +76 -0
- package/binding.gyp +19 -0
- package/bindings/node/binding.cc +28 -0
- package/bindings/node/binding_test.js +9 -0
- package/bindings/node/index.d.ts +28 -0
- package/bindings/node/index.js +19 -0
- package/bindings/rust/build.rs +40 -0
- package/bindings/rust/lib.rs +52 -0
- package/example1.cls +11 -0
- package/grammar.js +1831 -0
- package/package.json +24 -0
- package/parser.exp +0 -0
- package/parser.lib +0 -0
- package/parser.obj +0 -0
- package/random.w +11655 -0
- package/random2.js +2349 -0
- package/scanner.obj +0 -0
- package/src/grammar.json +50540 -0
- package/src/node-types.json +5804 -0
- package/src/parser.c +341235 -0
- package/src/scanner.c +161 -0
- package/src/tree_sitter/alloc.h +54 -0
- package/src/tree_sitter/array.h +291 -0
- package/src/tree_sitter/parser.h +224 -0
- package/tree-sitter-abl.wasm +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tree-sitter-abl",
|
|
3
|
+
"version": "0.0.47",
|
|
4
|
+
"description": "ABL grammar for tree-sitter",
|
|
5
|
+
"main": "bindings/node",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"generate": "tree-sitter generate",
|
|
8
|
+
"build": "tree-sitter generate && node-gyp build",
|
|
9
|
+
"build:wasm": "tree-sitter generate && tree-sitter build-wasm",
|
|
10
|
+
"parse": "tree-sitter generate && tree-sitter parse",
|
|
11
|
+
"test": "tree-sitter generate && tree-sitter test",
|
|
12
|
+
"dev": "nodemon --ignore ./src -e js,json,p --exec 'tree-sitter generate && tree-sitter parse example.p'",
|
|
13
|
+
"prepublishOnly": "npm run build && npm run build:wasm"
|
|
14
|
+
},
|
|
15
|
+
"author": "",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"nan": "^2.17.0"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"nodemon": "^3.1.9",
|
|
22
|
+
"tree-sitter-cli": "^0.20.8"
|
|
23
|
+
}
|
|
24
|
+
}
|
package/parser.exp
ADDED
|
Binary file
|
package/parser.lib
ADDED
|
Binary file
|
package/parser.obj
ADDED
|
Binary file
|