| 34 | import {storeCleanupWithContext} from '../util/view_utils'; |
| 35 | |
| 36 | class LQuery_<T> implements LQuery<T> { |
| 37 | matches: (T | null)[] | null = null; |
| 38 | constructor(public queryList: QueryList<T>) {} |
| 39 | clone(): LQuery<T> { |
| 40 | return new LQuery_(this.queryList); |
| 41 | } |
| 42 | setDirty(): void { |
| 43 | this.queryList.setDirty(); |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | class LQueries_ implements LQueries { |
| 48 | constructor(public queries: LQuery<any>[] = []) {} |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…