class documentation

class OperatorAssignmentStmt(Statement): (source)

View In Hierarchy

Operator assignment statement such as x += 1

Method __init__ Undocumented
Method accept Undocumented
Class Variable __match_args__ Undocumented
Class Variable __slots__ Undocumented
Instance Variable lvalue Undocumented
Instance Variable op Undocumented
Instance Variable rvalue Undocumented

Inherited from Node (via Statement):

Method __str__ Undocumented

Inherited from Context (via Statement, Node):

Method set_line If target is a node, pull line (and column) information into this node. If column is specified, this will override any column information coming from a node.
Instance Variable column Undocumented
Instance Variable end_column Undocumented
Instance Variable end_line Undocumented
Instance Variable line Undocumented
def __init__(self, op: str, lvalue: Lvalue, rvalue: Expression): (source)

Undocumented

def accept(self, visitor: StatementVisitor[T]) -> T: (source)

Undocumented

__match_args__: tuple[str, ...] = (source)

Undocumented

__slots__: tuple[str, ...] = (source)

Undocumented

Undocumented

Undocumented

Undocumented