-
Notifications
You must be signed in to change notification settings - Fork 0
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
First implementation of tree-sitter parser #20
First implementation of tree-sitter parser #20
Conversation
I will be working on the completions according to the list in the Redmine ticket as well as the tests while this PR is being reviewed as it is a lot to digest. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed eslint gives a lot of errors
fa3de16
to
037e73a
Compare
I fixed most of them, but some just don't make sense to me and they are annoying to fix. It's been too strict IMO. One of them tells me to use |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Would be nice if you could fix the eslint rules or errors.
41bc752
to
4158cdb
Compare
Those eslint errors should be gone. |
4158cdb
to
5416816
Compare
This wasm file is generated from tree-sitter-bitbake. Repo: https://github.com/amaanq/tree-sitter-bitbake
1. Use tree-sitter parser to get declarations and create completion items from them 2. Show error on erroneous nodes (No details for now) 3. Debounce analyze function
5416816
to
95d5626
Compare
What it does:
.wasm
file generated from hereThis PR is greatly inspired by bash-language-server. You can refer to it for more details.