-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
library calls possible within a call #157
Conversation
Code Coverage Summary
Diff against main
Results for commit: 5ea82b4 Minimum allowed coverage is ♻️ This comment has been updated with latest results |
What if someone detaches a package that is in the middle of the search path (for whatever reason)? |
as far as one uses |
But you can then lose a function from scope and the condition won't be triggered. I can't decide if that's going to be a problem 🤔 |
Removing namespace and then trying to obtain object from this namespace is a bug introduced by user. In the interactive session this would fail as well. It doesn't seem to be a Trick I proposed also prevent us from the problem of detached parent. Parent will be reset again |
Sounds good 👍 |
We haven't considered that using this feature forces us to call
one would do
This leaves us with a different search path:
I don't think this should be a problem but it is something we should be aware of. |
Possible to include
library
call ineval_code
#93