summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/offThreadCompileToStencil-02.js
blob: 2273cb63dde825b4ea8a7b9ac70dbb5d749250ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// |jit-test| skip-if: helperThreadCount() === 0

// Test offThreadCompileToStencil/evalStencil option handling.

offThreadCompileToStencil("Error()");
var stencil = finishOffThreadStencil();
assertEq(!!evalStencil(stencil).stack.match(/^@<string>:1:1\n/), true);

offThreadCompileToStencil("Error()", { fileName: "candelabra", lineNumber: 6502 });
stencil = finishOffThreadStencil();
assertEq(!!evalStencil(stencil).stack.match(/^@candelabra:6502:1\n/), true);

var element = {};
offThreadCompileToStencil("Error()"); // shouldn't crash
stencil = finishOffThreadStencil();
evalStencil(stencil, { element });

var elementAttributeName = "molybdenum";
elementAttributeName +=
  elementAttributeName + elementAttributeName + elementAttributeName;
offThreadCompileToStencil("Error()"); // shouldn't crash
stencil = finishOffThreadStencil();
evalStencil(stencil, {
  elementAttributeName,
});