(reason)
| 29 | } |
| 30 | |
| 31 | function throwIfBuildingSnapshot(reason) { |
| 32 | if (isBuildingSnapshot()) { |
| 33 | throw new ERR_NOT_SUPPORTED_IN_SNAPSHOT(reason); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | const deserializeCallbacks = []; |
| 38 | let deserializeCallbackIsSet = false; |
no test coverage detected