(node)
| 282 | |
| 283 | |
| 284 | function getFullKeyPath (node) { |
| 285 | if (node.parent === '#') { |
| 286 | return ''; |
| 287 | } |
| 288 | return node.id.substr(getRootConnection(node).length + 1); |
| 289 | } |
| 290 | |
| 291 | function getRootConnection (node) { |
| 292 | if (node.parent === '#') { |
no test coverage detected