You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let
m =Module()
Base.eval(m, :(using Infiltrator))
Base.eval(m, :(asdf =3))
Base.eval(m, :(@infiltrate))
end
Although the variable asdf shows up in the tab autocomplete, trying to evaluate it fails, though accessing it through @__MODULE__ (which evaluates to Main.anonymous) works:
infil> asdf
ERROR: UndefVarError: asdf not defined
infil> (@__MODULE__).asdf
3
The issue is not present if the let block is removed and the anonymous module is assigned in global scope.
Julia 1.8.2
Infiltrator v1.6.2
The text was updated successfully, but these errors were encountered:
Minimal example:
Although the variable
asdf
shows up in the tab autocomplete, trying to evaluate it fails, though accessing it through@__MODULE__
(which evaluates toMain.anonymous
) works:The issue is not present if the
let
block is removed and the anonymous module is assigned in global scope.The text was updated successfully, but these errors were encountered: