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

Hierarchy (View Summary)

Properties

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