Returns true if the specified type represents an assignment operator. Assignment operators include simple assignment (=) and compound assignments (+=, -=, =, etc.). @param type the token type to check @return true if the type is an assignment operator
(int type)
| 602 | * @since 3.0.0 |
| 603 | */ |
| 604 | public static boolean isAssignment(int type) { |
| 605 | return ofType(type, ASSIGNMENT_OPERATOR); |
| 606 | } |
| 607 | |
| 608 | /** |
| 609 | * Determines if a specific type belongs to a general type category through the type hierarchy. |
no test coverage detected