Open giltho opened 2 months ago
I read some more code, I have some answers to my own questions:
This repo does not provide bindings to tree-sitter right? Only a way of generating OCaml parsers from a tree-sitter syntax?
After reading again, I think the additional parsing stuff is just semgrep-specific, but the language parser is done through the tree-sitter bindings, so all good.
I tried installing things locally again, but things don't compile yet, I'll do more attempts before giving more details.
I think the most important questions left is: do you consider the generated code to be licensed?
No, the generated code is not licensed.
Hello, I have a few questions about this repo
Basically, if I want to use tree-sitter in OCaml to incrementally parse programs (to write, e.g., LSP servers), should I be using this repo, or creating my own bindings? Thanks!