-
Notifications
You must be signed in to change notification settings - Fork 1
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
Draft: Feature: MLSP implementation #51
base: master
Are you sure you want to change the base?
Conversation
.github/workflows/cmake.yml
Outdated
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.
Reminder to self to squash commits
src/cli/detcheck/CMakeLists.txt
Outdated
@@ -14,12 +14,11 @@ | |||
# You should have received a copy of the GNU General Public License | |||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | |||
# | |||
project(detcheck VERSION 1.0.0) | |||
project(aaltitoad-detcheck VERSION 1.0.0) |
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.
remember to update readme
result->set_name("aaltitoad-lsp"); | ||
result->set_language("hawk"); | ||
result->set_semanticversion(semver); | ||
result->add_capabilities(Capability::CAPABILITY_PROJECT); |
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.
still experimental
Additional changes - bump cpm version number to 0.39.0 - bump expr version number to 3.0.3
had to fix some usages that were no longer compatible with the new versions
This fixes #40
Also, use one cmakelists
It is a bit of a mess right now. I'm trying to get it to smell a bit more like a traditional compiler architecture.
also, the hawk compile chain is now more explicit using a scanner, parser, semantic analysis, optimization and code generation step. Just like a traditional compiler.
Initial implementation of the Model Language Server Protocol server.