@@ -37,16 +37,16 @@ fn test_operations(
37
37
!a; // $ Operation Op=! Operands=1 PrefixExpr LogicalOperation
38
38
39
39
// 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
50
50
51
51
// miscellaneous expressions that might be operations
52
52
* ptr; // $ Operation Op=* Operands=1 PrefixExpr
0 commit comments