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

Hierarchy (View Summary)

Properties

leadingComments?: Comment[]
loc?: null | SourceLocation
operator: BinaryOperator
range?: [number, number]
right: Expression
trailingComments?: Comment[]
type: "BinaryExpression"