mirror of
https://github.com/tc39/test262.git
synced 2025-07-23 05:55:36 +02:00
Add String.prototype.search test
This commit is contained in:
parent
825dd31d27
commit
fd74f97067
29
test/annexB/built-ins/String/prototype/search/custom-searcher-emulates-undefined.js
vendored
Normal file
29
test/annexB/built-ins/String/prototype/search/custom-searcher-emulates-undefined.js
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
/*---
|
||||||
|
esid: sec-string.prototype.search
|
||||||
|
description: >
|
||||||
|
[[IsHTMLDDA]] object as @@search method gets called.
|
||||||
|
info: |
|
||||||
|
String.prototype.search ( regexp )
|
||||||
|
|
||||||
|
[...]
|
||||||
|
2. If regexp is neither undefined nor null, then
|
||||||
|
a. Let searcher be ? GetMethod(regexp, @@search).
|
||||||
|
b. If searcher is not undefined, then
|
||||||
|
i. Return ? Call(searcher, regexp, « O »).
|
||||||
|
features: [Symbol.search, IsHTMLDDA]
|
||||||
|
---*/
|
||||||
|
|
||||||
|
var regexp = $262.IsHTMLDDA;
|
||||||
|
var searcherGets = 0;
|
||||||
|
Object.defineProperty(regexp, Symbol.search, {
|
||||||
|
get: function() {
|
||||||
|
searcherGets += 1;
|
||||||
|
return regexp;
|
||||||
|
},
|
||||||
|
configurable: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
assert.sameValue("".search(regexp), null);
|
||||||
|
assert.sameValue(searcherGets, 1);
|
Loading…
x
Reference in New Issue
Block a user