From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- js/src/jit-test/tests/parser/stencil-asmjs.js | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 js/src/jit-test/tests/parser/stencil-asmjs.js (limited to 'js/src/jit-test/tests/parser/stencil-asmjs.js') diff --git a/js/src/jit-test/tests/parser/stencil-asmjs.js b/js/src/jit-test/tests/parser/stencil-asmjs.js new file mode 100644 index 0000000000..0379fa05eb --- /dev/null +++ b/js/src/jit-test/tests/parser/stencil-asmjs.js @@ -0,0 +1,28 @@ +// |jit-test| skip-if: isLcovEnabled() + +let source = ` + var m = function() { + "use asm" + function g(){} + return g; + } + + function check() { + var objM = new m; + var g = m(); + // g is a ctor returning an primitive value, thus an empty object + assertEq(Object.getOwnPropertyNames(new g).length, 0); + } + + check() +`; + +// Check that on-demand delazification and concurrent delazification are not +// attempting to parse "use asm" functions. +const options = { + fileName: "tests/asm.js/testBug999790.js", + lineNumber: 1, + eagerDelazificationStrategy: "CheckConcurrentWithOnDemand", + newContext: true, +}; +evaluate(source, options); -- cgit v1.2.3