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
will not work because m doesn't have eval(::Expr) defined, but only have eval(::Module, ::Expr) this is because the module created using Module doesn't have eval(::Expr) defined. I'm not sure if we should just generate this method manually, but I think if we use Base.eval(::Module, ::Expr) it will always work at least.
The text was updated successfully, but these errors were encountered:
If you create new Julia module
will not work because
m
doesn't haveeval(::Expr)
defined, but only haveeval(::Module, ::Expr)
this is because the module created usingModule
doesn't haveeval(::Expr)
defined. I'm not sure if we should just generate this method manually, but I think if we useBase.eval(::Module, ::Expr)
it will always work at least.The text was updated successfully, but these errors were encountered: