Add "lastIndex" init test

This commit is contained in:
Alexey Shvayka 2020-03-20 20:34:31 +02:00 committed by Rick Waldron
parent fe4e96d8b0
commit fe2dfe9525
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-regexp.prototype-@@search
description: >
`previousLastIndex` value is compared using SameValue.
info: |
RegExp.prototype [ @@search ] ( string )
[...]
4. Let previousLastIndex be ? Get(rx, "lastIndex").
5. If SameValue(previousLastIndex, 0) is false, then
a. Perform ? Set(rx, "lastIndex", 0, true).
6. Let result be ? RegExpExec(rx, S).
[...]
features: [Symbol.search]
---*/
var re = /(?:)/;
var execLastIndex;
re.lastIndex = -0;
re.exec = function() {
execLastIndex = re.lastIndex;
return null;
};
assert.sameValue(re[Symbol.search](""), -1);
assert.sameValue(execLastIndex, 0);