(thread: ThreadInfo)
| 191 | } |
| 192 | |
| 193 | public removeStoredData(thread: ThreadInfo) { |
| 194 | for (const id of Object.keys(this.storedData).map((k) => parseInt(k, 10))) { |
| 195 | if (this.storedData[id].thread.num === thread.num) |
| 196 | delete this.storedData[id]; |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | public removeAllStoredData() { |
| 201 | for (const id of Object.keys(this.storedData).map((k) => parseInt(k, 10))) { |
no outgoing calls
no test coverage detected