()
| 63 | readonly [ReadLockTypeId]: ReadLockTypeId = ReadLockTypeId |
| 64 | constructor(readonly readers: HashMap.HashMap<FiberId.FiberId, number>) {} |
| 65 | get readLocks(): number { |
| 66 | return Array.from(this.readers).reduce((acc, curr) => acc + curr[1], 0) |
| 67 | } |
| 68 | get writeLocks(): number { |
| 69 | return 0 |
| 70 | } |
no outgoing calls
no test coverage detected