Interface BinaryOperatorJson

Can be used for both arithmetic and comparison binary operators.

interface BinaryOperatorJson {
    _identifier: string;
    op1: AstJson;
    op2: AstJson;
    operator: string;
    type: AstJson;
}

Hierarchy

  • AstJson
    • BinaryOperatorJson

Properties

_identifier: string

This is used to as a unique type identifier to deserialize the AST node.

op1: AstJson
op2: AstJson
operator: string
type: AstJson