Skip to content

ontodev/tree-sitter-sqlrest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tree-sitter-sqlrest

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

To modify the grammar, edit grammar.js and then run: tree-sitter generate

License: MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published