(entity)
| 390 | } |
| 391 | |
| 392 | async function openEntity (entity) { |
| 393 | bot.activateEntity(entity) |
| 394 | const [window] = await once(bot, 'windowOpen') |
| 395 | extendWindow(window) |
| 396 | return window |
| 397 | } |
| 398 | |
| 399 | function createActionNumber () { |
| 400 | nextActionNumber = nextActionNumber === 32767 ? 1 : nextActionNumber + 1 |
nothing calls this directly
no test coverage detected
searching dependent graphs…