Skip to content
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

Fix the remaining assertion tests #29

Merged
merged 3 commits into from
Oct 12, 2023
Merged

Fix the remaining assertion tests #29

merged 3 commits into from
Oct 12, 2023

Conversation

andreaTP
Copy link
Collaborator

No description provided.

@@ -1088,13 +1088,13 @@ public void printStackTrace() {
Value[] extractArgsForParams(ValueType[] params) {
if (params == null) return new Value[] {};
var args = new Value[params.length];
for (var i = 0; i < params.length; i++) {
for (var i = params.length; i > 0; i--) {
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bhelx I think we should reverse the order here, and the tests are confirming.

@andreaTP andreaTP requested a review from bhelx October 12, 2023 14:19
@andreaTP andreaTP marked this pull request as ready for review October 12, 2023 14:19
@andreaTP
Copy link
Collaborator Author

this should be ready to go now, I'll keep working on the primitives + happy path after that.

Copy link
Contributor

@bhelx bhelx left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice work!

@andreaTP andreaTP merged commit dd45718 into main Oct 12, 2023
6 checks passed
@andreaTP andreaTP deleted the fix-assertions-left branch January 25, 2024 16:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants