Postfix unary expression for operators applied after operands.
Represents unary operators that appear after their operands:
"++" for post-increment
"--" for post-decrement
E2E testing usage:
Counter operations where original value is used before modification
Loop iteration variables (though rare in typical E2E test scenarios)
AI function calling context: Use when the original value is needed before
the increment/decrement operation, typically in scenarios involving
iteration or counting with captured test data.
Postfix unary expression for operators applied after operands.
Represents unary operators that appear after their operands:
E2E testing usage:
AI function calling context: Use when the original value is needed before the increment/decrement operation, typically in scenarios involving iteration or counting with captured test data.