MadcapJake / language-perl6fe

»ö« Atom Perl 6 Support - Forgotten Edition »ö«
https://github.com/perl6/atom-language-perl6
Other
16 stars 3 forks source link

Allomorphic Types Not Highlighted As Types #30

Closed zoffixznet closed 8 years ago

zoffixznet commented 8 years ago

Issue Description

Perl 6 has four allomorphic types IntStr, NumStr, RatStr, ComplexStr. These are currently not highlighted the same as other types.

Example Code

sub unwanted {
    $_ ~~ Junction or $_ !~~ IntStr|NumStr|RatStr|ComplexStr;
};

Picture

z