-
Notifications
You must be signed in to change notification settings - Fork 93
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
Disable *transformer* variable inside a transformer call #247
Disable *transformer* variable inside a transformer call #247
Conversation
@wandersoncferreira I merged #248 and took a look at this. The change looks good, so if you update ih to work with the latest master, I'd be happy to merge it. Thanks again for your work! |
…o bugfix/allow-s-valid-inside-transformer
Great @miikka , thanks for taking the time to look at these PRs. I made the adjustments |
Codecov Report
@@ Coverage Diff @@
## master #247 +/- ##
==========================================
+ Coverage 87.99% 88.01% +0.01%
==========================================
Files 16 16
Lines 2049 2052 +3
Branches 183 183
==========================================
+ Hits 1803 1806 +3
Misses 63 63
Partials 183 183
Continue to review full report at Codecov.
|
Idea about how to solve #240 . The solution here is to disable the
*transformer*
dynamic variable when a transform function is called. I think this is a reasonable thing to do to avoid StackOverFlow scenarios.There is more details in #240 thread.
Thanks