| 103 | * @function |
| 104 | */ |
| 105 | export const createRelativePositionFromJSON = json => new RelativePosition(json.type == null ? null : createID(json.type.client, json.type.clock), json.tname ?? null, json.item == null ? null : createID(json.item.client, json.item.clock), json.assoc == null ? 0 : json.assoc) |
| 106 | |
| 107 | export class AbsolutePosition { |
| 108 | /** |
nothing calls this directly
no test coverage detected
searching dependent graphs…