InnerMod.hx 226 B

1234567891011
  1. package pack.inner;
  2. // this module should NOT shadow InnerMod when called from within pack.inner
  3. function lowerCase() {
  4. return "pack.InnerMod.lowerCase";
  5. }
  6. function UpperCase() {
  7. return "pack.InnerMod.UpperCase";
  8. }