Subject: | Double diamond operator (5.22+) interpreted as a here-document |
Date: | Mon, 5 Dec 2016 19:13:03 -0800 |
To: | bug-Perl-Tidy [...] rt.cpan.org |
From: | Marc Simpson <marc [...] 0branch.com> |
Perl::Tidy (v20160302) interprets the new double diamond operator as a
here-document, resulting in an error.
Trivial example (stub),
$ echo 'while (<>)' | perltidy -se
while (<>)
$ echo 'while (<<>>)' | perltidy -se -w
1: Unconventional here-target: ''
while (<<>>)
1: hit EOF in here document starting at line 1 with empty target
string