XCompile
    Preparing search index...

    Interface Assignment

    interface Assignment {
        kind: "assignment";
        left: Expression[];
        operator:
            | "="
            | "*="
            | "/="
            | "%="
            | "+="
            | "-="
            | "&="
            | "^="
            | "|="
            | ">>="
            | "<<=";
        right: Expression[];
    }
    Index

    Properties

    Properties

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