I'm writing a WxPerl program and instead of
$panel->SetDropTarget( MyTextDropTarget->new($panel) );
I wrote
$panel->SetDropTarget->( MyTextDropTarget->new($panel) );
and Perl didn't complain. (Perl called some function with some arguments, and the script did error out with an error message:
Usage: Wx::Window::SetDropTarget(THIS, target) at ./x.pl line 230.
I'm curious as to how Perl parsed the 'wrong' version.
Added edit:
Okay, so if $x = \&some_function, then I understand why
$x->($arg1, $arg2, ...)
calls some_function($arg1, $arg2, .....).
runrig's example is one possibility, but I'm quite sure that: 1) $panel contains a blessed object reference, not a string. 2) SetDropTarget is a method (in a base class) of $panel.
From the error message we can assume that SetDropTarget() being called. If runrig's example still applies here (and I'd guess it does), then even though SetDropTarget isn't followed by parentheses, i.e. I have
$panel->SetDropTarget->
instead of
$panel->SetDropTarget()->
Perl is still invoking SetDropTarget? (which inspects the number and type of its arguments and then fatally complains at runtime). Is that what happens?