May 3, 2026
9:45 a.m.
Existing regexp.vbs tests only access submatches via the split form (Set submatch = match.SubMatches; submatch.Item(N)) or the chained-call form match.SubMatches()(N). The bare property-then-index form match.SubMatches(N) was untested. Add two assertions on a known pattern to lock in the current behavior. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10812