(pipe *syncSocket, sync syncType)
| 110 | } |
| 111 | |
| 112 | func writeSync(pipe *syncSocket, sync syncType) error { |
| 113 | return doWriteSync(pipe, syncT{Type: sync}) |
| 114 | } |
| 115 | |
| 116 | func writeSyncArg(pipe *syncSocket, sync syncType, arg any) error { |
| 117 | argJSON, err := json.Marshal(arg) |
no test coverage detected
searching dependent graphs…