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
julia> if isdefined(:Gadfly) const g = Gadfly for x in (1,) end end julia> using Gadfly ERROR: invalid module path (Gadfly does not name a module)
Without the first expression Gadfly loads just fine.
The text was updated successfully, but these errors were encountered:
This is basically #2586 --- the for loop forces compilation, which forces the binding for Gadfly to be resolved in const g = Gadfly.
Gadfly
const g = Gadfly
Sorry, something went wrong.
Hmm, maybe I can fix this since the binding location can stay the same, and allow loading the module as long as the variable remains undefined.
222c41c
Awesome!
No branches or pull requests
Without the first expression Gadfly loads just fine.
The text was updated successfully, but these errors were encountered: