in reply to Re^4: Using a base module with a required version
in thread Using a base module with a required version

I think using array refs would be a good API for that.

Since parent has basically no reusable moving parts, simply copying the code and modifying it is the best approach.

I'm reluctant to modify parent itself, as the code is fairly simple as it is and it has the chance of breaking a lot of things.

  • Comment on Re^5: Using a base module with a required version

Replies are listed 'Best First'.
Re^6: Using a base module with a required version
by davido (Cardinal) on Aug 03, 2019 at 06:30 UTC

    My thoughts exactly: Copy what is there to a new module, add the versioning functionality, verify no regressions against existing test suite, and of course shoot for 100% coverage on new features.


    Dave