(ref: VMIsolateRef)
| 69 | } |
| 70 | |
| 71 | public getThreadInfoFromRef(ref: VMIsolateRef): ThreadInfo | undefined { |
| 72 | for (const thread of this.threads) { |
| 73 | if (thread.ref.id === ref.id) |
| 74 | return thread; |
| 75 | } |
| 76 | return undefined; |
| 77 | } |
| 78 | |
| 79 | public getThreadInfoFromNumber(num: number): ThreadInfo | undefined { |
| 80 | for (const thread of this.threads) { |
no outgoing calls
no test coverage detected