Interface CompoundAssignmentStatement
-
- All Known Implementing Classes:
CompoundAssignmentStatementImpl
public interface CompoundAssignmentStatement extends Statement
Example:lhsExpression()compoundAssignmentToken()rhsExpression()x += y
See https://docs.python.org/3/reference/simple_stmts.html#grammar-token-augmented-assignment-stmt
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TokencompoundAssignmentToken()ExpressionlhsExpression()ExpressionrhsExpression()
-
-
-
Method Detail
-
lhsExpression
Expression lhsExpression()
-
compoundAssignmentToken
Token compoundAssignmentToken()
-
rhsExpression
Expression rhsExpression()
-
-