-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disregard lastIndex for non-global non-sticky regexps #627
Disregard lastIndex for non-global non-sticky regexps #627
Conversation
With these changes , non-global non-sticky regexps with nonwritable lastIndex property should just work: * In RegExpBuiltinExec, remove any access to the lastIndex property for non-global, non-sticky regexp. * In RegExp.prototype.@@search, avoid to to set the lastIndex property when not necessary.
The intention of this PR is to fix #625. I have attempted to find and remove all plausible write accesses to the lastIndex property on non-global, non-sticky regexps. |
There remains the unconditional initialisation of |
Do you think this will be web-compatible? Does this correspond to Firefox or Safari semantics? |
Good question. First, note that setting a value to the lastIndex property of a non-global, non-sticky regexp is already useless, as it is not used when performing a match (see Step 8 of RegExpBuiltinExec). The only significant difference is that that property is no longer updated to 0 after a failed match. Test cases: (function() {
var rx = /a/
rx.lastIndex = 3
rx.exec('b')
return rx.lastIndex
})()
(function() {
var rx = /a/
rx.lastIndex = 3
'b'.match(rx)
return rx.lastIndex
})()
|
Also, just in case it was not clear (note the /g flag): 'b'.match(Object.freeze(/a/g)) Throws in current Firefox, Safari, Chrome, as well as any version of spec that supports Object.freeze. |
Would we need all of the changes in this patch to get the intended effect, or just the changes in lines 28700-28701? |
|
This change seems good to me - no need to do puts that are useless. However, still needs-consensus. Any volunteers to lead the discussion at TC39? |
Count me in. I don't have anything complex to bring so I'll have time to do this. |
I'd be happier with this if we made this a more minimal change, avoiding the useless yet observable changes to reading lastIndex. It sounds like the changes to search are needed, however. I will unfortunately not have data beyond the bug report to contribute to the meeting. |
About the useless read of lastIndex. This is part of the RegExpBuiltinExec abstract operation, which is applied only to objects that have a [[RegExpMatcher]] internal slots; and those objects always have an own nonconfigurable data property named About the changes in RegExp.prototype.@@search: It might be possible that the change is not needed for webcompat; however, I have tried to be consistent in making frozen regexp to just work under reasonable conditions, rather than to modify the strict minimum number of lines needed for resolving the particular reported issue. Consistency is important in order to avoid bugs. |
ToLength is observable there. let r = /a/; |
True. This is probably only significant for checking how scrupulously implementations follow the spec. Test case: function test(rx) {
rx.lastIndex = { valueOf: function () { throw "ok" } }
try {
rx.exec('foo')
}
catch (e) {
if (e === "ok")
return true
}
return false
} Results:
|
This reached consensus on the July meeting. |
Sounds like we need test262 tests before merging this PR. Who wants to write them? Edit: Oh, I see a bug was filed at tc39/test262#737 . |
it's good to verify the work on tc39/test262#711 to avoid any collision. I can help @claudepache to get the tests done. |
No collision that I could see. |
This implements tc39/ecma262#627. BUG=v8:5360 Review-Url: https://codereview.chromium.org/2339443002 Cr-Commit-Position: refs/heads/master@{#39402}
Update tests for the new lastIndex semantics introduced in tc39/ecma262#627.
Add new tests for the lastIndex semantic change introduced in tc39/ecma262#627.
Add new tests for the lastIndex semantic change introduced in tc39/ecma262#627.
Add and update tests for the lastIndex semantic change introduced in tc39/ecma262#627.
Add and update tests for the lastIndex semantic change introduced in tc39/ecma262#627.
* Tests for new lastIndex semantics Add and update tests for the lastIndex semantic change introduced in tc39/ecma262#627. * Address comments
@tcare / @leobalter we merged test262 tests for this right? Shall I take this PR? |
yes, please |
Implements upcoming changes to @@search according to tc39/ecma262#627. This also adds SameValue to CodeStubAssembler and extracts a part of CSA::TruncateTaggedToFloat64. BUG=v8:5339 Review-Url: https://codereview.chromium.org/2438683005 Cr-Commit-Position: refs/heads/master@{#41000}
@bterlson Any news on merging this? |
@schuay thanks for the ping, I think it's good to go. I removed the label and then promptly lost it :-P |
With these changes , non-global non-sticky regexps with nonwritable
lastIndex property should just work:
non-global, non-sticky regexp.
when not necessary.