()
| 248 | * will not receive any more events |
| 249 | */ |
| 250 | export function reset():void { |
| 251 | for (var i in _registeredObjects) { |
| 252 | if (i.substr(0,2) !== "__") { |
| 253 | deregisterObjectById(i); |
| 254 | } |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Unloads all objects. Does not deregister them, so they may |
nothing calls this directly
no test coverage detected