-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathVerifySkipNestedDeferred.js
133 lines (118 loc) · 3.9 KB
/
VerifySkipNestedDeferred.js
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
// Following lines generate a baseline with flags:
// -UseParserStateCache -ParserStateCache -ForceDeferParse -Trace:SkipNestedDeferred
function assertEqual(left, right, msg) {
if (left != right) {
console.log(`Fail: ${msg} ('${left}' != '${right}')`);
return false;
}
console.log(`Pass: ${msg}`);
return true;
}
var promiseToString ='[object Promise]';
var x = 'something'
function bar() {
function foo() {
function baz() {
function onemorefoo() {
return x;
}
return onemorefoo();
}
return baz();
}
return foo();
}
assertEqual(x, bar(), 'A few nested functions');
function foo() {
var n = (function() {
var x = 'x';
var l = () => {
var x = 'y';
return function() {
return x;
}
}
return l;
})()
return n()();
}
assertEqual('y', foo(), 'Nested unnamed function expression');
function f1() {
async function a1() {
async function a2() {
return x;
}
return a2();
}
return a1();
}
assertEqual(promiseToString, f1(), 'Function with nested async functions');
function f2() {
function* g1() {
function* g2() {
yield x;
}
yield g2().next().value;
}
return g1().next().value;
}
assertEqual(x, f2(), 'Function with nested generator functions');
function f3() {
var l1 = (s) => x;
return l1()
}
assertEqual(x, f3(), 'Nested concise-body lambda');
function f4() {
var l1 = (s) => { return x }
return l1()
}
assertEqual(x, f4(), 'Simple nested lambda');
function f5() {
var l1 = s => { return x }
return l1()
}
assertEqual(x, f5(), 'Nested concise-argument list lambda');
function f52() {
var l5 = s => { return s => { return x; } };
return l5();
}
assertEqual(x, f52()(), 'Couple of nested lambda');
function f6() {
var o = {
method(s) { return x; },
get method2() { return x; },
['method3'](arg) { return x; },
get ['method4']() { return x; },
async method5(s) { return x; },
*method6(s) { yield x; },
*['method7'](s) { yield x; },
async ['method8'](s) { return x; },
f8: function() { return x; },
f9: () => { return x; }
}
return assertEqual(x, o.method(), 'Simple method') &&
assertEqual(x, o.method2, 'Simple getter') &&
assertEqual(x, o.method3(), 'Computed-property named method') &&
assertEqual(x, o.method4, 'Computed-property named getter') &&
assertEqual(promiseToString, o.method5(), 'Async method') &&
assertEqual(x, o.method6().next().value, 'Generator method') &&
assertEqual(x, o.method7().next().value, 'Generator method with computed-property name') &&
assertEqual(promiseToString, o.method8(), 'Async method with computed-property name') &&
assertEqual(x, o.f8(), 'Function stored in object literal property') &&
assertEqual(x, o.f9(), 'Lambda stored in object literal property');
}
assertEqual(true, f6(), 'Several object literal methods');
function f7() {
eval('function f5(s) { return x; }');
return f5();
}
assertEqual(x, f7(), 'Simple function defined in eval');
function f8() {
eval('function f7(r) { function f9() { return x; }; return f9(); }');
return f7();
}
assertEqual(x, f8(), 'Nested eval functions');