@@ -58,7 +58,7 @@ class ConjugationExpr extends UnaryArithmeticOperation, @conjugation {
5858 * Note that this does not include calls to user-defined `operator++`
5959 * or `operator--`.
6060 */
61- class CrementOperation extends UnaryArithmeticOperation , @crement_op_expr {
61+ class CrementOperation extends UnaryArithmeticOperation , @crement_expr {
6262 override predicate mayBeImpure ( ) { any ( ) }
6363
6464 override predicate mayBeGloballyImpure ( ) {
@@ -75,28 +75,28 @@ class ConjugationExpr extends UnaryArithmeticOperation, @conjugation {
7575 *
7676 * Note that this does not include calls to user-defined `operator++`.
7777 */
78- class IncrementOperation extends CrementOperation , @incr_oper_expr { }
78+ class IncrementOperation extends CrementOperation , @increment_expr { }
7979
8080/**
8181 * A C/C++ `--` expression (either prefix or postfix).
8282 *
8383 * Note that this does not include calls to user-defined `operator--`.
8484 */
85- class DecrementOperation extends CrementOperation , @decr_oper_expr { }
85+ class DecrementOperation extends CrementOperation , @decrement_expr { }
8686
8787/**
8888 * A C/C++ `++` or `--` prefix expression.
8989 *
9090 * Note that this does not include calls to user-defined operators.
9191 */
92- class PrefixCrementOperation extends CrementOperation , @prefix_crement_oper_expr { }
92+ class PrefixCrementOperation extends CrementOperation , @prefix_crement_expr { }
9393
9494/**
9595 * A C/C++ `++` or `--` postfix expression.
9696 *
9797 * Note that this does not include calls to user-defined operators.
9898 */
99- class PostfixCrementOperation extends CrementOperation , @postfix_crement_oper_expr { }
99+ class PostfixCrementOperation extends CrementOperation , @postfix_crement_expr { }
100100
101101/**
102102 * A C/C++ prefix increment expression, as in `++x`.
0 commit comments