#parser #incremental #palm

tree-sitter-palm

palm grammar for the tree-sitter parsing library

1 unstable release

0.1.0 Apr 21, 2023

#399 in Text editors

Download history 11/week @ 2024-02-23 4/week @ 2024-03-01 5/week @ 2024-03-08 2/week @ 2024-03-15 16/week @ 2024-03-29 2/week @ 2024-04-05 67/week @ 2024-04-12

85 downloads per month

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
~72K SLoC