Skip to content

Commit

Permalink
Make "tight_or" list associative rather than left.
Browse files Browse the repository at this point in the history
  • Loading branch information
colomon committed Feb 4, 2010
1 parent 6bc10e4 commit 135ace1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Grammar.pm
Expand Up @@ -878,7 +878,7 @@ INIT {
Perl6::Grammar.O(':prec<n=>, :assoc<left>', '%structural');
Perl6::Grammar.O(':prec<m=>, :assoc<left>, :pasttype<chain>', '%chaining');
Perl6::Grammar.O(':prec<l=>, :assoc<left>', '%tight_and');
Perl6::Grammar.O(':prec<k=>, :assoc<left>', '%tight_or');
Perl6::Grammar.O(':prec<k=>, :assoc<list>', '%tight_or');
Perl6::Grammar.O(':prec<j=>, :assoc<right>', '%conditional');
Perl6::Grammar.O(':prec<i=>, :assoc<right>', '%item_assignment');
Perl6::Grammar.O(':prec<h=>, :assoc<unary>', '%loose_unary');
Expand Down

0 comments on commit 135ace1

Please sign in to comment.