| //@ skip if $architecture != "arm64" and $architecture != "x86-64" and $architecture != "arm" and $architecture != "mips" |
| function shouldBe(actual, expected) |
| throw new Error('bad value: ' + actual); |
| function test(flag, string) |
| regexp.lastIndex = "Cocoa"; |
| var result = string.match(regexp); |
| for (var i = 0; i < 1e6; ++i) { |
| var [result, regexp] = test(true, "hellohello"); |
| shouldBe(regexp instanceof RegExp, true); |
| shouldBe(regexp.lastIndex, 0); |
| shouldBe(result.length, 2); |
| shouldBe(result[0], "hello"); |
| shouldBe(result[1], "hello"); |
| shouldBe(test(false, "hellohello"), 0); |