atom / language-perl

Perl package for Atom
Other
25 stars 32 forks source link

Disallow ; in perl quote #13

Closed Fank closed 9 years ago

Fank commented 9 years ago

Used http://perldoc.perl.org/perlop.html#Quote-Like-Operators as info. Tested, this should fixes #7

Fank commented 9 years ago

This can't work because following example can be executed in perl ....

my $asd = q;

asdasd;;

print $asd;