svelte-ast-print - v0.6.0
    Preparing search index...
    interface BinaryExpression {
        leadingComments?: Comment[];
        left: Expression | PrivateIdentifier;
        loc?: null | SourceLocation;
        operator: BinaryOperator;
        range?: [number, number];
        right: Expression;
        trailingComments?: Comment[];
        type: "BinaryExpression";
    }

    Hierarchy (View Summary)

    Index

    Properties

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