Interface AssignStmtJson

interface AssignStmtJson {
    _identifier: string;
    leftOp: AstJson;
    rightOp: AstJson;
}

Hierarchy

  • AstJson
    • AssignStmtJson

Properties

_identifier: string

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

leftOp: AstJson
rightOp: AstJson