1
0
mirror of https://github.com/tc39/test262.git synced 2025-04-08 19:35:28 +02:00

fix order

This commit is contained in:
Kevin Gibbons 2022-08-07 20:11:29 -07:00 committed by Philip Chimento
parent 418419a345
commit adba7dfd9c

@ -19,4 +19,4 @@ assert.compareArray(["aabb", undefined, "bb"], matchResult);
assert.sameValue(matchResult.groups.x, "bb");
let notMatched = "abab".match(/(?:(?:(?<x>a)|(?<x>b))\k<x>){2}/);
assert.sameValue(null, notMatched);
assert.sameValue(notMatched, null);