interface BinaryOperationNode {
    kind: "BinaryOperationNode";
    leftOperand: OperationNode;
    operator: OperationNode;
    rightOperand: OperationNode;
}

Hierarchy (view full)

Properties

kind: "BinaryOperationNode"
leftOperand: OperationNode
operator: OperationNode
rightOperand: OperationNode