-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic usage not work #32
Comments
Parser bindings are not yet available. Check fwcd/tree-sitter-kotlin@135386b. |
that means your library doesn't work then, why call it a tree sitter kotlin lib ? tree sitter by default, on python, is bound to multiple language grammars and parsers which are statically linked as you enable them via a simple call edit: if you're worried about the size this could simply be a secondary module outside -core, call that the current code. This should be very easy and straightforward .... All kotlin ast parser libs are in stone age. |
No, it is not. If you're talking about |
val language = Language(TreeSitterKotlin.language())
val parser = Parser(language)
val tree = parser.parse("fun main() {}")
val rootNode = tree.rootNode
But TreeSitterKotlin.language() not exist?
The text was updated successfully, but these errors were encountered: