2 releases
0.1.1 | Oct 2, 2021 |
---|---|
0.1.0 | Sep 30, 2021 |
#313 in Parser tooling
44KB
1.5K
SLoC
Onotone TreeSitter parser
A TreeSitter grammar for onotone.
Available commands
Command | Result |
---|---|
yarn /npm i |
Install dependencies (unnecessary if you have TS in path) |
yarn gen /npm run gen |
tree-sitter generate && node-gyp build |
yarn test /npm run test |
tree-sitter test |
lib.rs
:
This crate provides onotone 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_onotone::language()).expect("Error loading onotone grammar");
let tree = parser.parse(code, None).unwrap();
Dependencies
~2.7–4MB
~71K SLoC