For no particular reason, I was playing around with the glob prototype (*), and seeing what it would do when the argument is a defined subroutine.
Given the following code:
sub test (*) {print "[@_]\n"}
sub blah ($) {"blah got @_"}
If you write test blah; you get the syntax error Not enough arguments for main::blah...
If you write test blah 1; the program compiles and prints [blah]
If you write test blah die; the program compiles, prints [blah] and does NOT die.
If you write test blah(1); the program compiles and prints [blah got 1]
If you write test blah(die); the program compiles and then dies.
The last two examples are clearly an application of the "if it looks like a subroutine call it is a subroutine call` rule.
However, the parenthesis-less examples seem like a bug to me. Because what seems to be happening is that despite being in glob context, the parser still treats blah as a prototyped function that requires an argument. But when compilation is said and done, the argument to blah is completely thrown away, and the string 'blah' is instead passed to test.
Here is an example of the test blah die; construct run through B::Deparse:
$ perl -MO=Deparse,-p -e 'sub test (*) {print "[@_]\n"} sub blah ($) {"blah got @_"} test blah die;'
sub test (*) {
print("[@_]\n");
}
sub blah ($) {
"blah got @_";
}
&test('blah');
-e syntax OK
So as you can see, the die is completely dropped from the op-tree.
So my question is if others consider this behavior a bug? Is the behavior documented anywhere? If it is a bug, is it worth fixing?
&test('blah');shows up in the deparsed version. This means (I believe) that Perl is circumventing the prototype (seeperldoc perlsub). – Joel Berger Apr 23 '11 at 17:47