(lock: LockState)
| 106 | } |
| 107 | |
| 108 | const isWriteLock = (lock: LockState): lock is WriteLock => { |
| 109 | return WriteLockTypeId in lock |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * An empty read lock state, in which no fiber holds any read locks. |
no outgoing calls
no test coverage detected