(o, po)
| 393 | } |
| 394 | |
| 395 | function getNode(o, po) |
| 396 | { |
| 397 | var insertFunction = removeToInsertLater(po.li); |
| 398 | po.childrenVisited = true; |
| 399 | var l = po.childrenData.length-1; |
| 400 | for (var i in po.childrenData) { |
| 401 | var nodeData = po.childrenData[i]; |
| 402 | po.children[i] = newNode(o, po, nodeData[0], nodeData[1], nodeData[2], |
| 403 | i==l); |
| 404 | } |
| 405 | insertFunction(); |
| 406 | } |
| 407 | |
| 408 | function gotoNode(o,subIndex,root,hash,relpath) |
| 409 | { |
no test coverage detected