()
| 23 | } |
| 24 | |
| 25 | function throwIfNotBuildingSnapshot() { |
| 26 | if (!isBuildingSnapshot()) { |
| 27 | throw new ERR_NOT_BUILDING_SNAPSHOT(); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | function throwIfBuildingSnapshot(reason) { |
| 32 | if (isBuildingSnapshot()) { |
no test coverage detected
searching dependent graphs…