(obsArray, removes)
| 2010 | } |
| 2011 | |
| 2012 | function processRemoves(obsArray, removes) { |
| 2013 | obsArray._processRemoves(removes); |
| 2014 | // this is referencing the name of the method on the array not the name of the event |
| 2015 | publish(obsArray, "arrayChanged", { array: obsArray, removed: removes }); |
| 2016 | } |
| 2017 | |
| 2018 | function publish(publisher, eventName, eventArgs) { |
| 2019 | var pendingPubs = publisher._getPendingPubs(); |
no test coverage detected