Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fake up intermediate precedence for . and .=
until we straighten out the associativity of unaries and infixes sharing
the same precedence level....
  • Loading branch information
TimToady committed Sep 27, 2015
1 parent 08d9122 commit 2b04b50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Grammar.nqp
Expand Up @@ -3608,7 +3608,7 @@ grammar Perl6::Grammar is HLL::Grammar does STD {
Perl6::Grammar.O(':prec<x=>, :assoc<unary>, :dba<autoincrement>', '%autoincrement');
Perl6::Grammar.O(':prec<w=>, :assoc<right>, :dba<exponentiation>', '%exponentiation');
Perl6::Grammar.O(':prec<v=>, :assoc<unary>, :dba<symbolic unary>', '%symbolic_unary');
Perl6::Grammar.O(':prec<v=>, :assoc<left>, :dba<dotty infix>, :nextterm<dottyopish>, :sub<z=>', '%dottyinfix');
Perl6::Grammar.O(':prec<v!=>, :assoc<left>, :dba<dotty infix>, :nextterm<dottyopish>, :sub<z=>', '%dottyinfix');
Perl6::Grammar.O(':prec<u=>, :assoc<left>, :dba<multiplicative>', '%multiplicative');
Perl6::Grammar.O(':prec<t=>, :assoc<left>, :dba<additive>', '%additive');
Perl6::Grammar.O(':prec<s=>, :assoc<left>, :dba<replication>', '%replication');
Expand Down

0 comments on commit 2b04b50

Please sign in to comment.