Implement and add support for RegExp.prototype[@@search] (#3436)
JerryScript-DCO-1.0-Signed-off-by: Dániel Bátyai dbatyai@inf.u-szeged.hu
This commit is contained in:
committed by
Zoltan Herczeg
parent
c525b1f10a
commit
d3b8bed2c1
@@ -0,0 +1,228 @@
|
||||
// Copyright JS Foundation and other contributors, http://js.foundation
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
var search = RegExp.prototype[Symbol.search];
|
||||
|
||||
try {
|
||||
search.call (0, "string");
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e instanceof TypeError);
|
||||
}
|
||||
|
||||
try {
|
||||
search.call (new RegExp(), {
|
||||
toString: () => {
|
||||
throw "abrupt string"
|
||||
}
|
||||
});
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e === "abrupt string");
|
||||
}
|
||||
|
||||
try {
|
||||
search.call ({
|
||||
get lastIndex() {
|
||||
throw "abrupt get lastIndex"
|
||||
}
|
||||
}, "string");
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e === "abrupt get lastIndex");
|
||||
}
|
||||
|
||||
try {
|
||||
search.call ({
|
||||
get lastIndex() {
|
||||
return 3;
|
||||
},
|
||||
set lastIndex(idx) {
|
||||
throw "abrupt set lastIndex"
|
||||
}
|
||||
}, "string");
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e === "abrupt set lastIndex");
|
||||
}
|
||||
|
||||
try {
|
||||
search.call ({
|
||||
get exec() {
|
||||
throw "abrupt exec"
|
||||
}
|
||||
}, "string");
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e === "abrupt exec");
|
||||
}
|
||||
|
||||
try {
|
||||
search.call ({
|
||||
exec: RegExp.prototype.exec
|
||||
}, "string");
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e instanceof TypeError);
|
||||
}
|
||||
|
||||
try {
|
||||
search.call ({
|
||||
exec: 42
|
||||
}, "string");
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e instanceof TypeError);
|
||||
}
|
||||
|
||||
try {
|
||||
search.call ({
|
||||
exec: () => {
|
||||
throw "abrupt exec result"
|
||||
}
|
||||
}, "string");
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e === "abrupt exec result");
|
||||
}
|
||||
|
||||
try {
|
||||
search.call ({
|
||||
exec: () => {
|
||||
return 1
|
||||
}
|
||||
}, "string");
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e instanceof TypeError);
|
||||
}
|
||||
|
||||
try {
|
||||
search.call ({
|
||||
exec: () => {
|
||||
return {
|
||||
get index() {
|
||||
throw "abrupt index"
|
||||
}
|
||||
}
|
||||
}
|
||||
}, "string");
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e === "abrupt index");
|
||||
}
|
||||
|
||||
assert (search.call (/abc/, "abc") === 0);
|
||||
assert (search.call (/abc/, "strabc") === 3);
|
||||
assert (search.call (/abc/, "bcd") === -1);
|
||||
|
||||
class Regexplike {
|
||||
constructor() {
|
||||
this.index = 0;
|
||||
this.global = true;
|
||||
}
|
||||
|
||||
exec() {
|
||||
if (this.index > 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
this.index = 42;
|
||||
var result = {
|
||||
length: 1,
|
||||
0: "Duck",
|
||||
index: this.index
|
||||
};
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
re = new Regexplike();
|
||||
assert (search.call (re, "str") === 42);
|
||||
|
||||
/* Object with custom @@search method */
|
||||
var o = {}
|
||||
o[Symbol.search] = function () {
|
||||
return 4;
|
||||
};
|
||||
assert ("string".search (o) === 4);
|
||||
|
||||
o[Symbol.search] = 42;
|
||||
try {
|
||||
"string".search (o);
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e instanceof TypeError);
|
||||
}
|
||||
|
||||
Object.defineProperty (o, Symbol.search, {
|
||||
get: () => {
|
||||
throw "abrupt @@search get"
|
||||
},
|
||||
set: (v) => {}
|
||||
});
|
||||
|
||||
try {
|
||||
"string".search (o);
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e === "abrupt @@search get");
|
||||
}
|
||||
|
||||
o = {};
|
||||
o[Symbol.search] = function () {
|
||||
throw "abrupt @@search"
|
||||
};
|
||||
try {
|
||||
"string".search (o);
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e === "abrupt @@search")
|
||||
}
|
||||
|
||||
o = {
|
||||
exec: function () { return {index: "Duck"}; },
|
||||
};
|
||||
assert ("string".search (o) === 1);
|
||||
|
||||
o[Symbol.search] = RegExp.prototype[Symbol.search];
|
||||
assert ("string".search (o) === "Duck");
|
||||
|
||||
o = {
|
||||
lastIndex: "Duck",
|
||||
exec: () => {
|
||||
return "Duck";
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
RegExp.prototype[Symbol.search].call (o, "Duck");
|
||||
assert (false);
|
||||
} catch (e) {
|
||||
assert (e instanceof TypeError);
|
||||
}
|
||||
|
||||
o = {
|
||||
exec: () => {
|
||||
return { 0: "Duck", index: 0 };
|
||||
},
|
||||
get lastIndex () {
|
||||
return "Duck";
|
||||
},
|
||||
set lastIndex (v) {
|
||||
return "Duck";
|
||||
}
|
||||
}
|
||||
|
||||
assert (RegExp.prototype[Symbol.search].call (o, "str") === 0);
|
||||
+2
@@ -15,4 +15,6 @@
|
||||
// Changing exec should not affect replace.
|
||||
Object.getPrototypeOf(/x/).exec = function () { return 1234; }
|
||||
assert (/y/.exec("y") === 1234);
|
||||
|
||||
assert ("y".replace (/y/, "x") === "x");
|
||||
assert ("ay".search (/y/) === 1);
|
||||
@@ -36,24 +36,5 @@ assert ("aaxbb".search (regexp) === 2);
|
||||
assert ("aabb".search (regexp) === -1);
|
||||
assert (regexp.lastIndex === "index");
|
||||
|
||||
Object.defineProperty(regexp, "lastIndex", {
|
||||
configurable : false,
|
||||
enumerable : false,
|
||||
value : "index2",
|
||||
writable : false
|
||||
});
|
||||
|
||||
assert ("axb".search (regexp) === 1);
|
||||
assert ("aabb".search (regexp) === -1);
|
||||
assert (regexp.lastIndex === "index2");
|
||||
|
||||
assert ("##\ud801\udc00".search ("\ud801") === 2);
|
||||
assert ("##\ud801\udc00".search ("\udc00") === 3);
|
||||
|
||||
// The real "exec" never returns with a number.
|
||||
Object.getPrototypeOf(/x/).exec = function () { return "???"; }
|
||||
|
||||
assert (/y/.exec("y") === "???");
|
||||
|
||||
// Changing exec should not affect search.
|
||||
assert ("ay".search (/y/) === 1);
|
||||
|
||||
Reference in New Issue
Block a user