@@ -37,16 +37,16 @@ fn test_operations(
3737 !a; // $ Operation Op=! Operands=1 PrefixExpr LogicalOperation
3838
3939 // bitwise operations
40- x & y; // $ Operation Op=& Operands=2 BinaryExpr
41- x | y; // $ Operation Op=| Operands=2 BinaryExpr
42- x ^ y; // $ Operation Op=^ Operands=2 BinaryExpr
43- x << y; // $ Operation Op=<< Operands=2 BinaryExpr
44- x >> y; // $ Operation Op=>> Operands=2 BinaryExpr
45- x &= y; // $ Operation Op=&= Operands=2 AssignmentOperation BinaryExpr
46- x |= y; // $ Operation Op=|= Operands=2 AssignmentOperation BinaryExpr
47- x ^= y; // $ Operation Op=^= Operands=2 AssignmentOperation BinaryExpr
48- x <<= y; // $ Operation Op=<<= Operands=2 AssignmentOperation BinaryExpr
49- x >>= y; // $ Operation Op=>>= Operands=2 AssignmentOperation BinaryExpr
40+ x & y; // $ Operation Op=& Operands=2 BinaryExpr BitwiseOperation BinaryBitwiseOperation
41+ x | y; // $ Operation Op=| Operands=2 BinaryExpr BitwiseOperation BinaryBitwiseOperation
42+ x ^ y; // $ Operation Op=^ Operands=2 BinaryExpr BitwiseOperation BinaryBitwiseOperation
43+ x << y; // $ Operation Op=<< Operands=2 BinaryExpr BitwiseOperation BinaryBitwiseOperation
44+ x >> y; // $ Operation Op=>> Operands=2 BinaryExpr BitwiseOperation BinaryBitwiseOperation
45+ x &= y; // $ Operation Op=&= Operands=2 AssignmentOperation BinaryExpr BitwiseOperation AssignBitwiseOperation
46+ x |= y; // $ Operation Op=|= Operands=2 AssignmentOperation BinaryExpr BitwiseOperation AssignBitwiseOperation
47+ x ^= y; // $ Operation Op=^= Operands=2 AssignmentOperation BinaryExpr BitwiseOperation AssignBitwiseOperation
48+ x <<= y; // $ Operation Op=<<= Operands=2 AssignmentOperation BinaryExpr BitwiseOperation AssignBitwiseOperation
49+ x >>= y; // $ Operation Op=>>= Operands=2 AssignmentOperation BinaryExpr BitwiseOperation AssignBitwiseOperation
5050
5151 // miscellaneous expressions that might be operations
5252 * ptr; // $ Operation Op=* Operands=1 PrefixExpr
0 commit comments