From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../tests/cacheir/add-function-prototype.js | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 js/src/jit-test/tests/cacheir/add-function-prototype.js (limited to 'js/src/jit-test/tests/cacheir/add-function-prototype.js') diff --git a/js/src/jit-test/tests/cacheir/add-function-prototype.js b/js/src/jit-test/tests/cacheir/add-function-prototype.js new file mode 100644 index 0000000000..e5a77d75df --- /dev/null +++ b/js/src/jit-test/tests/cacheir/add-function-prototype.js @@ -0,0 +1,55 @@ +function checkPrototype(fun, proto, resolvesPrototype) { + var desc = Object.getOwnPropertyDescriptor(fun, "prototype"); + assertEq(desc.value, proto); + assertEq(desc.configurable, !resolvesPrototype); + assertEq(desc.enumerable, !resolvesPrototype); + assertEq(desc.writable, true); +} +function addPrototype(fun, proto, resolvesPrototype) { + fun.prototype = proto; + checkPrototype(fun, proto, resolvesPrototype); +} +function test() { + for (var i=0; i<50; i++) { + addPrototype(function() {}, i, true); + addPrototype(function*() {}, i, true); + addPrototype(function async() {}, i, true); + // Builtins, arrow functions, bound functions don't have a default + // prototype property. + addPrototype(Math.abs, i, false); + addPrototype(Array.prototype.map, i, false); + addPrototype(() => 1, i, false); + addPrototype((function() {}).bind(null), i, false); + } + + // Now test this with a different IC for each function type. + for (var i=0; i<50; i++) { + var f = function() {}; + f.prototype = i; + checkPrototype(f, i, true); + + f = function*() {}; + f.prototype = i; + checkPrototype(f, i, true); + + f = function async() {}; + f.prototype = i; + checkPrototype(f, i, true); + + Math.sin.prototype = i; + checkPrototype(Math.sin, i, false); + + Array.prototype.filter.prototype = i; + checkPrototype(Array.prototype.filter, i, false); + + f = () => 1; + f.prototype = i; + checkPrototype(f, i, false); + + f = (function() {}).bind(null); + f.prototype = i; + checkPrototype(f, i, false); + } + +} +test(); -- cgit v1.2.3