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'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.
The text was updated successfully, but these errors were encountered:
Let's say we have two module
TypeA
andTypeB
on two filesTypeA.hx
andTypeB.hx
in a package namedmypack
.Referencing
TypeA
from withinTypeB.hx
should work without any additional import. Currently, we need to addimport mypack.TypeA;
inTypeB.hx
to make it work in interpretable env.The text was updated successfully, but these errors were encountered: