1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

fix >>= token

This commit is contained in:
Kevin Glynn 2011-03-13 13:46:00 +01:00
parent 85e2e6a663
commit d4e7da95ca

View File

@ -1303,7 +1303,7 @@ cast_expression returns [TypeRepTemplate dotNetType]
;
assignment_operator:
'=' | shortcut_assignment_operator ;
shortcut_assignment_operator: '+=' | '-=' | '*=' | '/=' | '%=' | '&=' | '|=' | '^=' | '<<=' | '>' '>=' ;
shortcut_assignment_operator: '+=' | '-=' | '*=' | '/=' | '%=' | '&=' | '|=' | '^=' | '<<=' | RIGHT_SHIFT_ASSIGN ;
//pre_increment_expression:
// '++' unary_expression ;
//pre_decrement_expression: