| 16 | } |
| 17 | |
| 18 | class NoopItemFactory<T, V> implements ItemAdapter<T, V> { |
| 19 | create(index: number, value: V): T { |
| 20 | return value as any as T; |
| 21 | } |
| 22 | update(item: T, index: number, value: V): void {} |
| 23 | |
| 24 | unwrap(item: T): V { |
| 25 | return item as any as V; |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | class LoggingLiveCollection<T, V> extends LiveCollection<T, V> { |
| 30 | operations = { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…