(list: T[], el: T)
| 858 | } |
| 859 | |
| 860 | export function remove<T>(list: T[], el: T): void { |
| 861 | const index = list.indexOf(el); |
| 862 | if (index > -1) { |
| 863 | list.splice(index, 1); |
| 864 | } |
| 865 | } |
| 866 | |
| 867 | export const enum ApplicationRefDirtyFlags { |
| 868 | None = 0, |
no test coverage detected
searching dependent graphs…