Files
tree-sitter-hack-binary/tree-sitter.json

38 lines
1.0 KiB
JSON

{
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json",
"grammars": [
{
"name": "hack_binary",
"camelcase": "HackBinary",
"title": "Hack Binary",
"scope": "source.hack_binary",
"file-types": ["hack"],
"injection-regex": "^hack[-_]?binary$",
"class-name": "TreeSitterHackBinary"
}
],
"metadata": {
"version": "1.0.0",
"license": "MIT",
"description": "A Tree-sitter grammar for parsing Hack Binary machine code (nand2tetris)",
"authors": [
{
"name": "Sean O'Connor",
"email": "sean@soconnor.dev"
}
],
"links": {
"repository": "https://github.com/soconnor0919/nand2tetris-zed"
}
},
"bindings": {
"c": true,
"go": false,
"node": true,
"python": false,
"rust": true,
"swift": false,
"zig": false
}
}