ClobberingReload.jl icon indicating copy to clipboard operation
ClobberingReload.jl copied to clipboard

creloading a submodule doesn't work

Open cstjean opened this issue 8 years ago • 0 comments

In this code, changes to SubMod.x are ignored.

module TestMod
module SubMod
export x
x = 8
end
using .SubMod
end

It's the using that's problematic. SubMod.x works fine. The proper solution on our side would be to eval the submodule code inside the submodule. That's not a trivial amount of work.

cstjean avatar Mar 24 '17 14:03 cstjean