(from: Node, to: Node, fromNodeName: string)
| 313 | * using the path generated by this function. |
| 314 | */ |
| 315 | export function calcPathBetween(from: Node, to: Node, fromNodeName: string): string | null { |
| 316 | const path = navigateBetween(from, to); |
| 317 | return path === null ? null : compressNodeLocation(fromNodeName, path); |
| 318 | } |
| 319 | |
| 320 | /** |
| 321 | * Invoked at serialization time (on the server) when a set of navigation |
no test coverage detected
searching dependent graphs…