(directory: string, entry: Entry)
| 63 | }).pipe(Effect.withSpan("InstanceStore.boot")) |
| 64 | |
| 65 | const removeEntry = (directory: string, entry: Entry) => |
| 66 | Effect.sync(() => { |
| 67 | if (cache.get(directory) !== entry) return false |
| 68 | cache.delete(directory) |
| 69 | return true |
| 70 | }) |
| 71 | |
| 72 | const completeLoad = (directory: string, input: LoadInput, entry: Entry) => |
| 73 | Effect.gen(function* () { |
no test coverage detected