torch.tx.BinaryOpNode
export interface BinaryOpNode {
type: 'binary';
op: string;
left: ASTNode;
right: ASTNode;
start: number;
end: number;
}export interface BinaryOpNode {
type: 'binary';
op: string;
left: ASTNode;
right: ASTNode;
start: number;
end: number;
}