()
| 129 | return function (x?) { |
| 130 | return new WinJS.Promise(function (complete) { |
| 131 | function waitForDeferredAction_handler() { |
| 132 | listView.removeEventListener("accessibilityannotationcomplete", waitForDeferredAction_handler, false); |
| 133 | WinJS.Utilities._setImmediate(function () { |
| 134 | complete(x); |
| 135 | }); |
| 136 | } |
| 137 | |
| 138 | listView.addEventListener("accessibilityannotationcomplete", waitForDeferredAction_handler, false); |
| 139 | }); |
nothing calls this directly
no test coverage detected