isIncrementOperator property

bool isIncrementOperator

Return true if this type of token represents an increment operator.

Implementation

bool get isIncrementOperator =>
    this == TokenType.PLUS_PLUS || this == TokenType.MINUS_MINUS;