(event)
| 4322 | setTimeout(() => ansItems(ButtonClickedEvent), 10); |
| 4323 | }); |
| 4324 | function ansItems(event) { |
| 4325 | if (Process.arch != "arm") |
| 4326 | return; |
| 4327 | let persistentCalls = event.m_Calls.m_PersistentCalls; |
| 4328 | let executingCalls = event.m_Calls.m_ExecutingCalls; |
| 4329 | let runtimeCalls = event.m_Calls.m_RuntimeCalls; |
| 4330 | LOGD(`\t${parseList(persistentCalls).toSimpleString()}`); |
| 4331 | LOGD(`\t${parseList(executingCalls).toSimpleString()}`); |
| 4332 | LOGD(`\t${parseList(runtimeCalls).toSimpleString()}`); |
| 4333 | } |
| 4334 | }; |
| 4335 | exports.OnButtonClick = OnButtonClick; |
| 4336 | const HideClickedObj = (x, y) => { |
no test coverage detected