| 57 | // this is valid because depends on SampleService1 and is defined in the dependencies array, which is provided outside of the service |
| 58 | const dependencies1 = [SampleService1.Default] as const |
| 59 | export class ValidService5 extends Effect.Service<ValidService5>()("ValidService5", { |
| 60 | effect: Effect.gen(function*() { |
| 61 | const sampleService1 = yield* SampleService1 |
| 62 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected