XCompile
    Preparing search index...

    Interface Binary

    interface Binary {
        kind: "binary";
        left: Expression[];
        operator:
            | ","
            | "-"
            | "+"
            | "&"
            | "*"
            | "/"
            | "%"
            | "=="
            | "==="
            | "!="
            | ">="
            | "<="
            | "^"
            | "|"
            | "&&"
            | "||"
            | "??"
            | "<<<"
            | ">>>"
            | "<<"
            | ">>"
            | "<"
            | ">";
        right: Expression[];
    }
    Index

    Properties

    Properties

    kind: "binary"
    left: Expression[]
    operator:
        | ","
        | "-"
        | "+"
        | "&"
        | "*"
        | "/"
        | "%"
        | "=="
        | "==="
        | "!="
        | ">="
        | "<="
        | "^"
        | "|"
        | "&&"
        | "||"
        | "??"
        | "<<<"
        | ">>>"
        | "<<"
        | ">>"
        | "<"
        | ">"
    right: Expression[]