#tree-sitter #parser #incremental #owl-ms

tree-sitter-owl-ms

owl-ms grammar for the tree-sitter parsing library

3 releases

new 0.0.3 Feb 13, 2025
0.0.2 Oct 31, 2024
0.0.1 Oct 31, 2024

#252 in Text editors

Download history 229/week @ 2024-10-27 20/week @ 2024-11-03 2/week @ 2024-11-10 4/week @ 2024-11-17 1/week @ 2024-11-24 2/week @ 2024-12-01 20/week @ 2024-12-08 4/week @ 2024-12-15 23/week @ 2025-02-02 146/week @ 2025-02-09

169 downloads per month
Used in owl-ms-language-server

MIT license

1MB
34K SLoC

C 34K SLoC JavaScript 404 SLoC // 0.0% comments Scheme 112 SLoC Rust 35 SLoC // 0.4% comments

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

Dependencies

~2.8–4MB
~77K SLoC