export class InfixApp { constructor(op, left, right) { this.op = op; this.left = left; this.right = right; } }