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

Re^2: How can i prevent perltidy from adding a semicolon after an ellipsis?

by karlgoethebier (Abbot)
on Nov 18, 2017 at 19:32 UTC ( [id://1203757]=note: print w/replies, xml ) Need Help??


in reply to Re: How can i prevent perltidy from adding a semicolon after an ellipsis?
in thread How can i prevent perltidy from adding a semicolon after an ellipsis?

Ah, i see:

karls-mac-mini:monks karl$ perl -E 'sub foo{...}; foo();' Unimplemented at -e line 1. karls-mac-mini:monks karl$ perl -E 'sub bar{...;}; bar();' Unimplemented at -e line 1

Both are valid. I didn't know this.

I didn't run perl -c on the concerning file and thought things went wrong.

On the other hand: I don't want perltidy to change my valid code. Nitpicking, sure.

Thanks and best regards, Karl

«The Crux of the Biscuit is the Apostrophe»

perl -MCrypt::CBC -E 'say Crypt::CBC->new(-key=>'kgb',-cipher=>"Blowfish")->decrypt_hex($ENV{KARL});'Help

Replies are listed 'Best First'.
Re^3: How can i prevent perltidy from adding a semicolon after an ellipsis?
by LanX (Saint) on Nov 18, 2017 at 19:46 UTC
    From the docs You can only use the elliptical statement to stand in for a complete statement.

    So the semicolon is needed, if the "yadda yadda" is followed by other statements.

    And a trailing semicolon in a functions body is certainly not bad style.

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

      Thanks Rolf.

      «The Crux of the Biscuit is the Apostrophe»

      perl -MCrypt::CBC -E 'say Crypt::CBC->new(-key=>'kgb',-cipher=>"Blowfish")->decrypt_hex($ENV{KARL});'Help

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-23 22:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found