Skip to content

Commit

Permalink
Explicitly mark the sequence operators as fully not curried, even tho…
Browse files Browse the repository at this point in the history
…ugh in practice their precedence seems to block currying at the moment anyway.
  • Loading branch information
colomon committed Nov 19, 2010
1 parent d39f4f6 commit 731a832
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Perl6/Actions.pm
Expand Up @@ -3522,7 +3522,8 @@ sub capture_or_parcel($args, $name) {


our %not_curried; our %not_curried;
INIT { INIT {
%not_curried{'&infix:<...>'} := 1; %not_curried{'&infix:<...>'} := 2;
%not_curried{'&infix:<...^>'} := 2;
%not_curried{'&infix:<..>'} := 1; %not_curried{'&infix:<..>'} := 1;
%not_curried{'&infix:<..^>'} := 1; %not_curried{'&infix:<..^>'} := 1;
%not_curried{'&infix:<^..>'} := 1; %not_curried{'&infix:<^..>'} := 1;
Expand Down

0 comments on commit 731a832

Please sign in to comment.