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
|
let x = 2;
function simple() {
for (var i = 0; i < 10; i++) {
x = i;
assertEq(x, i);
}
}
function setname() {
function set(obj, v) {
with (obj) {
x = v;
}
}
set({}, 100)
assertEq(x, 100);
set({x: 1}, 0);
assertEq(x, 100);
set({__proto__: {x: 1}}, 13);
assertEq(x, 100);
}
function noshadow() {
for (var i = 0; i < 20; i++) {
x = i;
assertEq(x, i);
if (i == 10) {
globalThis.x = "haha";
assertEq(x, 10);
}
}
}
function uninitialized() {
for (var i = 0; i < 20; i++) {
var threw = false;
try {
undef = 2;
} catch {
threw = true;
}
assertEq(threw, true);
}
}
function simpleStrict() {
"use strict";
for (var i = 0; i < 10; i++) {
x = i;
assertEq(x, i);
}
}
// No with in strict!
function noshadowStrict() {
"use strict";
for (var i = 0; i < 20; i++) {
x = i;
assertEq(x, i);
if (i == 10) {
globalThis.x = "haha";
assertEq(x, 10);
}
}
}
function uninitializedStrict() {
for (var i = 0; i < 20; i++) {
var threw = false;
try {
undef = 2;
} catch {
threw = true;
}
assertEq(threw, true);
}
}
simple();
setname();
noshadow();
uninitialized();
simpleStrict();
noshadowStrict();
uninitializedStrict();
let undef = 42;
|