Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^3: map syntax error -- weird

by LanX (Saint)
on Mar 22, 2013 at 10:39 UTC ( [id://1024916]=note: print w/replies, xml ) Need Help??


in reply to Re^2: map syntax error -- weird
in thread map syntax error -- weird

oops true! =)

 
               "{" starts both hash references and blocks, so "map { ..."
               could be either the start of map BLOCK LIST or map EXPR, LIST.
               Because perl doesn’t look ahead for the closing "}" it has to
               take a guess at which its dealing with based what it finds just
               after the "{". Usually it gets it right, but if it doesn’t it
               won’t realize something is wrong until it gets to the "}" and
               encounters the missing (or unexpected) comma. The syntax error
               will be reported close to the "}" but you’ll need to change
               something near the "{" such as using a unary "+" to give perl
               some help:

Since PBP "map EXPR, LIST" fell completely out of my scope, but it explains why a hash-ref could even be considered valid here.

Cheers Rolf

( addicted to the Perl Programming Language)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-04-24 06:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found