(view: LView)
| 319 | } |
| 320 | |
| 321 | export function getOrCreateLViewCleanup(view: LView): any[] { |
| 322 | // top level variables should not be exported for performance reasons (PERF_NOTES.md) |
| 323 | return (view[CLEANUP] ??= []); |
| 324 | } |
| 325 | |
| 326 | export function getOrCreateTViewCleanup(tView: TView): any[] { |
| 327 | return (tView.cleanup ??= []); |
no outgoing calls
no test coverage detected
searching dependent graphs…