#parser #incremental #asena

tree-sitter-lura

lura grammar for the tree-sitter parsing library

25 releases

0.1.20 Sep 20, 2023
0.1.19 Aug 12, 2023
0.1.13 Jul 29, 2023
0.0.9 Jul 18, 2023

#374 in Text editors

Download history 21/week @ 2024-02-26 4/week @ 2024-03-11 57/week @ 2024-04-01 274/week @ 2024-04-15 2/week @ 2024-04-22

333 downloads per month

MIT license

3MB
123K SLoC

C 122K SLoC JavaScript 481 SLoC // 0.0% comments Scheme 54 SLoC Rust 33 SLoC // 0.4% comments

Moved to https://github.com/aripiprazole/lura


lib.rs:

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

Dependencies

~2.8–4MB
~72K SLoC