#tree-sitter #parser #incremental #palm

tree-sitter-palm

palm grammar for the tree-sitter parsing library

1 unstable release

0.1.0 Apr 21, 2023

#374 in Text editors

MIT license

155KB
5.5K SLoC

C 5K SLoC JavaScript 161 SLoC // 0.1% comments Scheme 120 SLoC // 0.1% comments Rust 34 SLoC // 0.3% comments

This crate provides palm 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_palm::language()).expect("Error loading palm grammar");
let tree = parser.parse(code, None).unwrap();

Dependencies

~2.8–4MB
~77K SLoC