http://www.perlmonks.org?node_id=85611


in reply to Re: Re: Forcing Compile Time Checking That Subs Exist
in thread Forcing Compile Time Checking That Subs Exist

Maybe the compiler's not the right tool to catch these errors.

It's a hard nut to crack because of things like AUTOLOAD, Autosplit, and run-time access to class symbol tables. We won't even get into the abomination that is multiple dispatch, because I'm still wrapping it around my brain.

I catch a lot more errors running unit tests on my code than I do running it through the compiler and looking for warnings. If you exercise your code paths sufficiently as bikeNomad suggests, you'd get closer to what you want than the compiler can provide.

It's not exactly what you want, but it's working pretty well for me.

  • Comment on Re: Re: Re: Forcing Compile Time Checking That Subs Exist