(compatible: boolean)
| 944 | } |
| 945 | |
| 946 | function runRefRoundTrip(compatible: boolean): void { |
| 947 | const refFory = buildFory(compatible, true, [ |
| 948 | registerTreeTypes, |
| 949 | registerGraphTypes, |
| 950 | ]); |
| 951 | |
| 952 | runFileRoundTrip("DATA_FILE_TREE", refFory, buildTree(), assertTreeEqual); |
| 953 | runFileRoundTrip("DATA_FILE_GRAPH", refFory, buildGraph(), assertGraphEqual); |
| 954 | } |
| 955 | |
| 956 | for (const compatible of resolveCompatibleModes()) { |
| 957 | runStandardRoundTrip(compatible); |
no test coverage detected