I have a scenario where I have @Input-less OnPush component in Angular. If I call markForCheck(), the view binding in my component's template will be checked?
I mean, my component is OnPush and markForCheck() marks all ancestors to be checked and because my component has no @Input, what will be the behaviour of Angular here? Will Angular skip checking component's view bindings or will it always check?