AstOpBinary: {
    id: number;
    kind: "op_binary";
    left: AstExpression;
    loc: SrcInfo;
    op: BinaryOperation;
    right: AstExpression;
}