Example Sq::Parser
The current approach with importing doesn't work. When i write.
use Sq;
use Sq::Parser;
use Sq::Sig::Parser;
then this does not work as expected. Sq::Sig::Parser adds type-checks to the function in Sq::Parser but the type-checking is added after the functions was imported in the current package. So the function in the current package don't have any Signatures.
Example Sq::Parser
The current approach with importing doesn't work. When i write.
then this does not work as expected.
Sq::Sig::Parseradds type-checks to the function inSq::Parserbut the type-checking is added after the functions was imported in the current package. So the function in the current package don't have any Signatures.