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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// |jit-test| skip-if: helperThreadCount() === 0
// Test offThreadCompileToStencil for different function types.
load(libdir + 'asserts.js');
var id, stencil;
id = offThreadCompileToStencil(`
function f() { return "pass"; }
f();
`);
stencil = finishOffThreadStencil(id);
assertEq(evalStencil(stencil), "pass");
id = offThreadCompileToStencil(`
function* f() { return "pass"; }
f().next();
`);
stencil = finishOffThreadStencil(id);
assertDeepEq(evalStencil(stencil), {value: "pass", done: true});
id = offThreadCompileToStencil(`
async function f() { return "pass"; }
f();
`);
stencil = finishOffThreadStencil(id);
assertEventuallyEq(evalStencil(stencil), "pass");
id = offThreadCompileToStencil(`
async function* f() { return "pass"; }
f().next();
`);
stencil = finishOffThreadStencil(id);
assertEventuallyDeepEq(evalStencil(stencil), {value: "pass", done: true});
// Copied from js/src/tests/shell.js
function getPromiseResult(promise) {
var result, error, caught = false;
promise.then(r => { result = r; },
e => { caught = true; error = e; });
drainJobQueue();
if (caught)
throw error;
return result;
}
function assertEventuallyEq(promise, expected) {
assertEq(getPromiseResult(promise), expected);
}
function assertEventuallyDeepEq(promise, expected) {
assertDeepEq(getPromiseResult(promise), expected);
}
|