#tree-sitter #parser #incremental #your-language-name

yanked tree-sitter-your-language-name

YourLanguageName grammar for tree-sitter

0.0.1 Aug 22, 2024

#124 in #parsing

MIT license

27KB
754 lines

Tree-Sitter-TBL

Tree-Sitter grammar for the Linux Kernel .tbl augmented TSV format


lib.rs:

This crate provides YourLanguageName 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 = r#"
"#;
let mut parser = tree_sitter::Parser::new();
parser.set_language(&tree_sitter_YOUR_LANGUAGE_NAME::language()).expect("Error loading YourLanguageName grammar");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());

Dependencies

~3–4MB
~79K SLoC