Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^8: Feature Idea: qr//e (barewords)

by LanX (Saint)
on Jan 20, 2017 at 13:20 UTC ( [id://1179999]=note: print w/replies, xml ) Need Help??


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!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1179999]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2024-04-18 15:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found