()
| 6615 | this.operators = new Map(); |
| 6616 | } |
| 6617 | registerPendingOperators() { |
| 6618 | for (const op of this.to_register) { |
| 6619 | const sym = op.schema().name; |
| 6620 | if (!this.operators.has(sym)) { |
| 6621 | this.operators.set(sym, []); |
| 6622 | } |
| 6623 | this.operators.get(sym).push(op); |
| 6624 | } |
| 6625 | this.to_register = []; |
| 6626 | } |
| 6627 | registerOperator(op) { |
| 6628 | this.to_register.push(op); |
| 6629 | } |