(scope, e,a,v,node?)
| 142 | } |
| 143 | |
| 144 | store(scope, e,a,v,node?) { |
| 145 | // console.log("STORING", e, a, v, node, this.index.lookup(e,a,v,node) === undefined); |
| 146 | let key = this.changes[this.round].store(scope,e,a,v,node); |
| 147 | let captured = this.capturedChanges; |
| 148 | if(captured !== undefined) { |
| 149 | captured.store(scope,e,a,v,node,key); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | unstore(scope, e,a,v,node?) { |
| 154 | // console.log("REMOVING", e, a, v, node, this.index.lookup(e,a,v,node) === undefined); |
no outgoing calls
no test coverage detected