interface AssignmentExpression {
    leadingComments?: Comment[];
    left: Pattern;
    loc?: null | SourceLocation;
    operator: AssignmentOperator;
    range?: [number, number];
    right: Expression;
    trailingComments?: Comment[];
    type: "AssignmentExpression";
}

Hierarchy (View Summary)

Properties

leadingComments?: Comment[]
left: Pattern
loc?: null | SourceLocation
range?: [number, number]
right: Expression
trailingComments?: Comment[]
type: "AssignmentExpression"