ESCalc - v0.0.1-beta.2
    Preparing search index...

    Type Alias BinaryExpression

    type BinaryExpression = {
        left: LogicalExpression;
        location: SourceRegion | null;
        operator:
            | "subtraction"
            | "addition"
            | "multiplication"
            | "division"
            | "modulus"
            | "exponentiation"
            | "greater-than"
            | "less-than"
            | "greater-than-equal"
            | "less-than-equal"
            | "not-equals"
            | "equals"
            | "and"
            | "or"
            | "bit-and"
            | "bit-or"
            | "bit-xor"
            | "bit-left-shift"
            | "bit-right-shift"
            | "in"
            | "not-in";
        right: LogicalExpression;
        type: "binary";
    }
    Index

    Properties

    location: SourceRegion | null
    operator:
        | "subtraction"
        | "addition"
        | "multiplication"
        | "division"
        | "modulus"
        | "exponentiation"
        | "greater-than"
        | "less-than"
        | "greater-than-equal"
        | "less-than-equal"
        | "not-equals"
        | "equals"
        | "and"
        | "or"
        | "bit-and"
        | "bit-or"
        | "bit-xor"
        | "bit-left-shift"
        | "bit-right-shift"
        | "in"
        | "not-in"
    type: "binary"