-
Notifications
You must be signed in to change notification settings - Fork 5
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
v0.11.0-alpha.6 #542
Merged
Merged
v0.11.0-alpha.6 #542
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
Signed-off-by: Luna <[email protected]>
Signed-off-by: Luna <[email protected]>
…literals-object-definition
…literals-object-definition
…s in parse-rule-kind-mapping.ts
…-for-objects-literals-object-definition Implemented syntax for objects literal expressions (object definition)
…ement Signed-off-by: Luna <[email protected]>
…ment-do-while-loop-statement
…le-loop-statement Implemented do-while loop statement
…mand-analyse-and-replace-it-with-compile-dry-run Removed command `analyse` and replaced it with `compile` command `--dry-run` flag
Luna-Klatzer
requested review from
a team and
lorenzholzbauer
and removed request for
a team
July 1, 2024 19:17
Luna-Klatzer
added
release
New release of the Kipper module.
skip changelog
Do not include in the changelog when a new release is drafted
labels
Jul 1, 2024
size-limit report 📦
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## next #542 +/- ##
==========================================
- Coverage 83.47% 83.16% -0.32%
==========================================
Files 205 207 +2
Lines 3613 3653 +40
Branches 410 416 +6
==========================================
+ Hits 3016 3038 +22
- Misses 424 440 +16
- Partials 173 175 +2 ☔ View full report in Codecov by Sentry. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
release
New release of the Kipper module.
skip changelog
Do not include in the changelog when a new release is drafted
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.
What type of change does this PR perform?
Summary
New development version
0.11.0-alpha.6
, which removes theanalyse
command, adds support for do-while loops and adds syntax support for objects (no semantic analysis or translation).List of Changes
DoWhileLoopIterationStatement
and target translation to JavaScript and TypeScript.analyse
.--dry-run
flag to the CLI commandcompile
.Does this PR create new warnings?
None.
Detailed Changelog
Added
do ... while ...
) iteration statements. (#271)--dry-run
incompile
, which only compiles the program and does not write any outputs. (#532).ObjectPrimaryExpression
, which represents an AST object primary expression.ObjectProperty
, which represents an AST object property.Changed
TargetASTNodeCodeGenerator.arrayLiteralExpression
toarrayPrimaryExpression
.TargetASTNodeSemanticAnalyser.listPrimaryExpression
toarrayPrimaryExpression
.Removed
analyse
in favor of the flag--dry-run
in the CLI commandcompile
. (#532).ConstantExpression
, its interfacesConstantExpressionSemantics
andConstantExpressionTypeSemantics
, as they were not really needed and unnecessarily added another level of complexity to the AST. All classes which previously inherited fromConstantExpression
now inherit fromPrimaryExpression
instead.Linked issues or PRs
do ... while
loop statement #271analyse
and replace it withcompile --dry-run
#532analyse
and replaced it withcompile
command--dry-run
flag #535