How do you get Perl to stop and give a stack trace when you reference an undef value, rather than merely warning? It seems that use strict; isn't sufficient for this purpose.
|
|
The first line makes the warning fatal. The next two cause a stack trace when your program dies. |
||||
|
|
|
Instead of the messy fiddling with Note that you can inject modules into a script without source modifications simply by running it with |
|||
|
|
|
Include this:
Then include one of these lines at the top of your source file:
The |
||||
|
|
|
One way to make those warnings fatal is to install a signal handler for the WARN virtual-signal:
|
|||
|
|
|
Referencing an undef value wouldn't be a problem in itself, but it may cause warnings if your code is expecting it to be something other than undef. (particularly if you're trying to use that variable as an object reference). You could put something in your code such as:
|
||||
|
|
|
You have to do this manually. The above "answers" do not work! Just test out this:
You will see that dereferencing did not cause any error messages or warnings. I know of no way of causing Perl to automatically detecting the use of undef as an invalid reference. I suspect this is so by design, so that autovivification works seamlessly. |
|||
|
|