-
-
Notifications
You must be signed in to change notification settings - Fork 379
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
Issues 212, 256: Adding support for internal lambdas to reference parameters from the parent lambda #257
Conversation
…ameters from the parent lambda.
LGTM! Thank you! @metoule do you see problems? |
Yes it will. This will also make it so that #213 can be closed without merging as the settings Identifier dictionary has become our "locals" dictionary. I just thought of a couple more cases to verify that we are only able to access parameters defined in the enclosing lambda, not a parameter defined by an adjacent lambda. Will get those included as soon as able. |
Test cases to cover duplicating parameter names in other lambdas have been added. |
…mes in a child lambda scope.
123aaf3
to
f190b40
Compare
Thank you @holdenmai . It looks like a very nice feature. There is just a failed test. |
Unit test has been fixed. It actually had a bad lambda declaration that would not have compiled with real code. I guess the only issue with that is if a consumer of this package had also done the same thing in the past. |
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.
That's even better than my attempt in #213 (and simpler :)), thanks a lot!!
Issue #212 was really the issue here.
When replicating the code given in Issue #256 the last "x.Grade" was being immediately resolved as the value from the parameter was being inserted directly. In the previous implementation of "InterpreterExpression", it was creating it as a new ParameterExpression.
This code update captures the "parent" ParameterExpressions as identifiers.
This is essentially what happens with compiled code, so instead of us having to create a class, Expression actually allows us to reference the existing Expression as an Identifier.
Fix #212, #200, #256