-
Notifications
You must be signed in to change notification settings - Fork 13
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
feat: recursion support #87
base: main
Are you sure you want to change the base?
Conversation
@emilsoman there are some minor details to fix, but the module_compiler tests are working correctly! |
scope: %{}, | ||
has_effect: false, | ||
current_signature: current_signature, | ||
latest_called_function: if(env[:first_pass], do: env[:current_signature]), |
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.
Do we set first_pass
to true anywhere?
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.
It was being set to true as the default value for the struct. This might need a refactor now that the struct has been removed.
init_env still sets it, but most tests don't call it
Improves the ideas from #61 for handling more edge cases