#parser #jack #incremental #nand2tetris

tree-sitter-jack

Jack (nand2tetris) grammar for the tree-sitter parsing library

2 releases

0.1.1 Jan 29, 2022
0.1.0 Jan 29, 2022

#331 in Text editors

32 downloads per month

MIT license

115KB
4K SLoC

C 4K SLoC JavaScript 98 SLoC Rust 31 SLoC // 0.5% comments

tree-sitter-jack

Jack (nand2tetris) grammar for the tree-sitter parsing library


lib.rs:

This crate provides jack language support for the tree-sitter parsing library.

Typically, you will use the language function to add this language to a tree-sitter Parser, and then use the parser to parse some code:

let code = "";
let mut parser = tree_sitter::Parser::new();
parser.set_language(tree_sitter_jack::language()).expect("Error loading jack grammar");
let tree = parser.parse(code, None).unwrap();

Dependencies

~2.7–4MB
~71K SLoC