binaryPrecedence property

int binaryPrecedence
getter/setter pair

For tokens that can be used as binary operators, this indicates their relative precedence. Set to -100 for other tokens. Token type can be BINARY, or UNARY (+,-) or NAME (instanceof,in).

Implementation

int binaryPrecedence = -100;