#tree-sitter #html #noto #onotone

tree-sitter-onotone

onotone grammar for the tree-sitter parsing library

2 releases

0.1.1 Oct 2, 2021
0.1.0 Sep 30, 2021

#292 in Parser tooling

MIT license

44KB
1.5K SLoC

C 1.5K SLoC JavaScript 43 SLoC Rust 31 SLoC // 0.5% comments

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