Camelcade / Perl5-IDEA

Perl5 plugins for IntelliJ IDEA
https://plugins.jetbrains.com/plugin/7796-perl/
Other
406 stars 75 forks source link

Concatenating to `$$` yields "semicolon expected" error #2912

Closed scop closed 1 month ago

scop commented 1 month ago

Concatenating a string to $$ (current process id) yields a false "semicolon expected" error on the opening quote of the string to be concatenated:

my $foo = $$."foo";
           # ^here

See also attached screenshot.

Screenshot from 2024-09-23 13-12-58

hurricup commented 1 month ago

Ye, seems plugin treats it as ${$.} 

hurricup commented 1 month ago

Similar to #1893