http://qs321.pair.com?node_id=1179999


in reply to Re^7: Feature Idea: qr//e
in thread Feature Idea: qr//e (updated with solutions)

Well it's a parsing problem, if you manage to enter a subroutine named s into the stash you can certainly call it with &s (which is not a bare word anymore)

Can't test at the moment, and Perl's parser is known to be complicated. :)

(I remember that CGI renamed tr to TR for this reason)

Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Je suis Charlie!

Replies are listed 'Best First'.
Re^9: Feature Idea: qr//e (Quote-like-Operators)
by LanX (Saint) on Jan 20, 2017 at 14:42 UTC
    > if you manage to enter a subroutine named s into the stash you can certainly call it with &s

    to illustrate what I meant, *s and &s are not "bare" because of the sigils.

    But a bare word s is supposed to start a s/// resp. s()() or s{}{} or ... depending on whatever character follows (even with empty space in between)

    This makes parsing particularly difficult.

    use strict; use warnings; *s = sub { warn "s called" }; &s(); # --- not working # sub s { # warn "s called" # } # --- neither # s();
    s called at c:/tmp/pm/s_sub.pl line 11.

    This problem should apply for all perlop#Quote-and-Quote-like-Operators .

    Cheers Rolf
    (addicted to the Perl Programming Language and ☆☆☆☆ :)
    Je suis Charlie!