-
-
Notifications
You must be signed in to change notification settings - Fork 46
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
Integrating the new parser #425
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Former-commit-id: f567af034611eac9e999e2ebf9217e8b5d6d34ed
Former-commit-id: 1a6ce9b448487ca1f67284230c7f2e303cc4bac1
SuperFola
added
❗️ priority/medium
💥 breaking change
Indicate that the issue/PR is bringing breaking change(s) in the language
labels
Jun 7, 2023
github-actions
bot
added
👷 ci
Related to our Continous Integration system (build, tests, auto-release...)
ark/compiler
Related to the compiler
ark/macros
Related to macros in ArkScript and to the macro processor
ark/parser
Parser related
ark/repl
Related to the REPL
ark/virtual machine
Related to the ark virtual machine
labels
Jun 7, 2023
SuperFola
force-pushed
the
feat/parser
branch
2 times, most recently
from
June 8, 2023 15:28
154fb0f
to
fa7e3d2
Compare
…unding it in the compiler side of things This new parser isn't ready to use yet, but if I continue, this commit will be 50000 lines by itself, while I just need something that can compile basic files and work the same way as before. I still need to add an import solver, clean a lot of todo/fixme, (re)implement conditional macros, add the parser's tests in the CI, and some more cleanup, but we are getting there!
SuperFola
force-pushed
the
feat/parser
branch
9 times, most recently
from
June 8, 2023 18:03
f00b21d
to
bee077a
Compare
SuperFola
force-pushed
the
feat/parser
branch
from
November 20, 2023 13:11
09d862d
to
99c1c88
Compare
This PR is dropping the (imo) useless support for utf8 identifiers ; however utf8 strings are still supported. |
SuperFola
force-pushed
the
feat/parser
branch
20 times, most recently
from
November 26, 2023 16:16
733f1f7
to
8f472d2
Compare
SuperFola
force-pushed
the
feat/parser
branch
from
November 26, 2023 16:31
8f472d2
to
99bb6d5
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
ark/compiler
Related to the compiler
ark/macros
Related to macros in ArkScript and to the macro processor
ark/parser
Parser related
ark/repl
Related to the REPL
ark/virtual machine
Related to the ark virtual machine
💥 breaking change
Indicate that the issue/PR is bringing breaking change(s) in the language
👷 ci
Related to our Continous Integration system (build, tests, auto-release...)
❗️ priority/medium
🧪 tests
Related to the project tests
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New parser, new syntax
Description
This PR aims at integrating the parser made there into ArkScript v4. The tests for the parser have been added to the project, and code has been refactored (specifically in the compiler, to unify the code base and have a better integration with this new parser).
Closes #423
Checklist