Skip to content

Commit

Permalink
Change rsh/lsh to shr/shl. bacek++
Browse files Browse the repository at this point in the history
  • Loading branch information
treed committed Aug 16, 2009
1 parent 0d2b4be commit 56914a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parser/grammar.pg
Expand Up @@ -489,10 +489,10 @@ proto 'infix:&=' is equiv('infix:=') { ... }
proto 'infix:~=' is equiv('infix:=') { ... }

proto infix:«>>=» is equiv('infix:=')
is pirop('rsh') { ... }
is pirop('shr') { ... }

proto infix:«<<=» is equiv('infix:=')
is pirop('lsh') { ... }
is pirop('shl') { ... }

proto 'infix:&&=' is equiv('infix:=')
is pirop('and') { ... }
Expand Down

0 comments on commit 56914a3

Please sign in to comment.