uses binary operators to act on two operands in an expression

interface BinaryExpression {
    left?: Expression;
    operator?: string;
    right?: Expression;
    type?: string;
}

Properties

left?: Expression
operator?: string
right?: Expression
type?: string
MMNEPVFCICPMFPCPTTAAATR