1 unstable release

0.1.0 May 20, 2023

#9 in #ispc

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

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();

tree-sitter-ispc

build crates.io

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

Dependencies

~2.8–4MB
~75K SLoC