Interface CompoundAssignmentStatement

All Superinterfaces:
Statement, Tree
All Known Implementing Classes:
CompoundAssignmentStatementImpl

public interface CompoundAssignmentStatement extends Statement
   lhsExpression() compoundAssignmentToken() rhsExpression()
 
Example:
x += y
See https://docs.python.org/3/reference/simple_stmts.html#grammar-token-python-grammar-augmented_assignment_stmt
  • Method Details

    • lhsExpression

      Expression lhsExpression()
    • compoundAssignmentToken

      Token compoundAssignmentToken()
    • rhsExpression

      Expression rhsExpression()