MadcapJake / language-perl6fe

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

.categorize, .prepend and .antipairs methods not highlighted #38

Open zoffixznet opened 8 years ago

zoffixznet commented 8 years ago

.categorize method not highlighted

Example Code

    throws-like { 42.classify    }, Exception, '.classify() on Any throws';
    throws-like { 42.categorize: * }, Exception, '.classify(*) on Any throws';
    is-deeply Any.pairs, (), '.pairs';
    is-deeply Any.antipairs, (), '.antipairs';
    42.append;
    42.prepend;