(target: any)
| 177 | * a component, directive or a DOM node). |
| 178 | */ |
| 179 | export function readLView(target: any): LView | null { |
| 180 | const data = readPatchedData(target); |
| 181 | if (isLView(data)) { |
| 182 | return data; |
| 183 | } |
| 184 | return data ? data.lView : null; |
| 185 | } |
| 186 | |
| 187 | /** |
| 188 | * Assigns the given data to the given target (which could be a component, |
nothing calls this directly
no test coverage detected
searching dependent graphs…