Skip to content

Commit

Permalink
BR
Browse files Browse the repository at this point in the history
  • Loading branch information
rumpe committed Aug 24, 2024
1 parent a152064 commit 6be2c5d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ component grammar StreamExpressions extends CommonExpressions {
* a:b:c is equal to a:(b:c), hence <rightassoc>
* a:b^^c is equal to a:(b^^c)
* a+b:c is equal to (a+b):c, and
* (even so they are semantically associative)
* a <= b:c is equal to a <= (b:c), hence the priority 154, 156
*/
AppendStreamExpression implements Expression <154>, InfixExpression =
Expand All @@ -63,6 +64,7 @@ component grammar StreamExpressions extends CommonExpressions {
/*
* Concatenation of streams
* a^^b^^c is equal to a^^(b^^c), hence <rightassoc>
* (even so it is semantically associative)
*/
ConcatStreamExpression implements Expression <156>, InfixExpression =
<rightassoc>
Expand Down

0 comments on commit 6be2c5d

Please sign in to comment.