-
Notifications
You must be signed in to change notification settings - Fork 6
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
Add field assignment #218
base: master
Are you sure you want to change the base?
Add field assignment #218
Conversation
Since we are mutating an existing instance of "something", we might need to keep track of all instantiated variables in the context in order to mutate them later. This should be done in another PR |
We can set a field's value in one of those two cases:
Thus, we can only keep track of variables to mutate via the scope map. We should be able to use the The only other problem remaining is to allow the mutation of a field of a field of a field... of a variable. Think |
Closes #191