interface LogicalExpression {
    end?: null | number;
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    left: Expression;
    loc?: null | SourceLocation;
    operator: "||" | "&&" | "??";
    range?: [number, number];
    right: Expression;
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "LogicalExpression";
}

Hierarchy (view full)

Properties

end?: null | number
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
operator: "||" | "&&" | "??"
range?: [number, number]
right: Expression
start?: null | number
trailingComments?: null | Comment[]
type: "LogicalExpression"