We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It should be possible to rebind previous declared symbols to something else.
string foo = "bar";
int foo = 3;
This requires to keep track of declared symbols and excluding rebinded symbols from the imports.
module _mod1; string foo = "bar";
module _mod2; import _mod1 : foo; int foo = 3;
module _mod3; import _mod2 : foo; // doesn't import _mod1 : foo //
Using selective imports allows to correctly implement function overload. In that case both selective imports are present.
The text was updated successfully, but these errors were encountered:
Keeping track of symbols would allow to reference count the shared libraries and free them if all symbols are reused.
Sorry, something went wrong.
this bug prevents drepl from being usefull in jupyterd.
MartinNowak
No branches or pull requests
It should be possible to rebind previous declared symbols to something else.
This requires to keep track of declared symbols and excluding rebinded symbols from the imports.
Using selective imports allows to correctly implement function overload.
In that case both selective imports are present.
The text was updated successfully, but these errors were encountered: