infixApp.js 127 B

12345678
  1. export class InfixApp {
  2. constructor(op, left, right) {
  3. this.op = op;
  4. this.left = left;
  5. this.right = right;
  6. }
  7. }