roll-parser - v3.0.0-beta.0
    Preparing search index...

    Type Alias BinaryOpNode

    BinaryOpNode: NodeSpan & {
        left: ASTNode;
        operator: "+" | "-" | "*" | "/" | "%" | "**";
        right: ASTNode;
        type: "BinaryOp";
    }

    Binary operation node.