Variable AccessibilityElementModifierRemoverConst

AccessibilityElementModifierRemover: MutationOperator = ...

This operator matches a SwiftUI view with an .accessibilityElement(...) modifier, which is used to define behavior for child elements of the view (for example, to combine child views into a single element focused by VoiceOver). The operator creates mutations that remove the modifier.

Before:

VStack(...) {
...
}
.accessibilityElement(children: .combine)

After:

VStack(...) {
...
}

Applicable WCAG Success Criteria: