de2580d9
by Francis De Brabandere at 2026-05-04T12:10:44-04:00
vbscript/tests: Cover bare match.SubMatches(N) indexing.
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.