atom / language-perl

Perl package for Atom
Other
25 stars 32 forks source link

Added support for the bitwise operator. #80

Closed mbowman100 closed 7 years ago

Alhadis commented 7 years ago

This was superseded by #89, so this can probably be closed.

Furthermore, the PR's addition shouldn't require leading and trailing whitespace in order to tokenise bitwise operators, as the following line is legal Perl code:

my $value = 16<<2;
print "$value\n"; # Result: 64