(obsArray, adds)
| 2002 | } |
| 2003 | |
| 2004 | function processAdds(obsArray, adds) { |
| 2005 | obsArray._processAdds(adds); |
| 2006 | // this is referencing the name of the method on the complexArray not the name of the event |
| 2007 | //var args = { added: adds }; |
| 2008 | //args[obsArray._typeName] = obsArray; |
| 2009 | publish(obsArray, "arrayChanged", { array: obsArray, added: adds }); |
| 2010 | } |
| 2011 | |
| 2012 | function processRemoves(obsArray, removes) { |
| 2013 | obsArray._processRemoves(removes); |
no test coverage detected