(table, hash, values)
| 36 | } |
| 37 | |
| 38 | function AddDebugCache(table, hash, values) { |
| 39 | cache.push({ |
| 40 | table: table, |
| 41 | hash: hash, |
| 42 | values: values |
| 43 | }) |
| 44 | } |
| 45 | |
| 46 | function DeleteCache(table, hash) { |
| 47 | cache.forEach((item, index) => { |
nothing calls this directly
no outgoing calls
no test coverage detected