blob: ac29c9acf0e0cb4d8c9f528873936650aa85c3b2 (
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
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
|
load(libdir + 'bytecode-cache.js');
// Bury the class definition deep in a lazy function to hit edge cases of lazy
// script handling.
test = `
function f1() {
function f2() {
function f3() {
class C {
constructor() {
this.x = 42;
}
}
return new C;
}
return f3();
}
return f2();
}
if (generation >= 2) {
assertEq(f1().x, 42);
}
`;
evalWithCache(test, {});
// NOTE: Fields currently force full parsing, but this test may be more
// interesting in future.
test = `
function f1() {
function f2() {
function f3() {
class C {
y = 12;
constructor() {
this.x = 42;
}
}
return new C;
}
return f3();
}
return f2();
}
if (generation >= 2) {
assertEq(f1().x, 42);
assertEq(f1().y, 12);
}
`;
evalWithCache(test, {});
|