#ispc #parser #incremental

tree-sitter-ispc

ISPC grammar for tree-sitter (based on C grammar)

1 unstable release

0.1.0 May 20, 2023

#396 in Text editors

Download history 5/week @ 2024-02-22 3/week @ 2024-02-29 10/week @ 2024-03-28 7/week @ 2024-04-04 79/week @ 2024-04-11 3/week @ 2024-04-18

99 downloads per month

MIT license

5MB
161K SLoC

C 160K SLoC JavaScript 332 SLoC // 0.0% comments Scheme 302 SLoC // 0.0% comments Rust 31 SLoC // 0.5% comments

tree-sitter-ispc

build crates.io

ISPC grammar for tree-sitter (based on tree-sitter-c).


lib.rs:

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

Dependencies

~2.8–4MB
~72K SLoC