( path: array<KeyOrKeyNode>, node: node )
| 797 | JSON.stringify(metaJson).replace(referenceMatcher, "$1") |
| 798 | |
| 799 | export const flatRef = <node extends BaseRoot>( |
| 800 | path: array<KeyOrKeyNode>, |
| 801 | node: node |
| 802 | ): FlatRef<node> => ({ |
| 803 | path, |
| 804 | node, |
| 805 | propString: typePathToPropString(path) |
| 806 | }) |
| 807 | |
| 808 | export const flatRefsAreEqual = (l: FlatRef, r: FlatRef): boolean => |
| 809 | l.propString === r.propString && l.node.equals(r.node) |
no test coverage detected
searching dependent graphs…