(newIndex, oldIndex)
| 54334 | } |
| 54335 | |
| 54336 | function processNode(newIndex, oldIndex) { |
| 54337 | var thisNode = newIndex != null ? thisViewChildren[newIndex] : null; |
| 54338 | var oldNode = oldIndex != null ? oldViewChildren[oldIndex] : null; |
| 54339 | var group = doRenderNode(thisNode, oldNode, parentGroup, depth); |
| 54340 | group && dualTravel(thisNode && thisNode.viewChildren || [], oldNode && oldNode.viewChildren || [], group, sameTree, depth + 1); |
| 54341 | } |
| 54342 | } |
| 54343 | |
| 54344 | function clearStorage(storage) { |
no test coverage detected
searching dependent graphs…