(
@Inject(ConsumerService) public readonly consumer: ConsumerService,
@Inject(helperToken(index % helpers.length))
public readonly helper: unknown,
)
| 164 | @Injectable() |
| 165 | class Sibling { |
| 166 | constructor( |
| 167 | @Inject(ConsumerService) public readonly consumer: ConsumerService, |
| 168 | @Inject(helperToken(index % helpers.length)) |
| 169 | public readonly helper: unknown, |
| 170 | ) {} |
| 171 | } |
| 172 | |
| 173 | Object.defineProperty(Sibling, 'name', { value: `Sibling_${index}` }); |
nothing calls this directly
no test coverage detected