(multiIndex, row, changes)
| 50 | |
| 51 | export class InsertAction extends Action { |
| 52 | execute(multiIndex, row, changes) { |
| 53 | let [e,a,v] = this.resolve(row); |
| 54 | for(let scope of this.scopes) { |
| 55 | changes.store(scope,e,a,v,this.node); |
| 56 | } |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | export class RemoveAction extends Action { |