#tree-sitter #cql #parser #incremental

bin+lib tree-sitter-cql

cql grammar for the tree-sitter parsing library

4 releases (2 breaking)

0.2.0 May 9, 2024
0.1.2 May 8, 2024
0.1.1 Jun 24, 2022
0.1.0 May 20, 2022
0.0.1 Apr 29, 2022

#311 in Text editors

Download history 213/week @ 2024-10-16 203/week @ 2024-10-23 173/week @ 2024-10-30 295/week @ 2024-11-06 326/week @ 2024-11-13 364/week @ 2024-11-20 291/week @ 2024-11-27 181/week @ 2024-12-04 109/week @ 2024-12-11 9/week @ 2024-12-18 22/week @ 2024-12-25 42/week @ 2025-01-01 1/week @ 2025-01-15 31/week @ 2025-01-22 38/week @ 2025-01-29

71 downloads per month
Used in 2 crates (via cql3-parser)

MIT license

730KB
23K SLoC

C 22K SLoC JavaScript 865 SLoC Rust 166 SLoC // 0.3% comments

Usage

Add the following line to Cargo.toml.

tree-sitter-cql = "0.0.1"

Regenerate

  1. Make changes to grammar.js
  2. Run cargo install tree-sitter-cli
  3. Ensure that .cargo/bin is in your $PATH
  4. Install nodejs. Possibly pacman -Syu nodejs or apt-get install nodejs.
  5. Run tree-sitter generate

lib.rs:

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

Dependencies

~3–4MB
~78K SLoC