interpret
interpret copied to clipboard
Referencing a module in the same package should not need an explicit import
Let's say we have two module TypeA and TypeB on two files TypeA.hx and TypeB.hx in a package named mypack.
Referencing TypeA from within TypeB.hx should work without any additional import. Currently, we need to add import mypack.TypeA; in TypeB.hx to make it work in interpretable env.