-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathWith2.js
132 lines (105 loc) · 2.2 KB
/
With2.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
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function X()
{
this.x = 1;
}
function Y(s)
{
this[s] = 2;
}
function Z()
{
this.z = 3;
}
Y.prototype = new Z();
X.prototype = new Y("y");
var x = new X();
var y = new Y("yy");
var z = new Z();
with(x)
{
WScript.Echo("x.x = " + x);
WScript.Echo("x.y = " + y);
WScript.Echo("x.z = " + z);
++z;
WScript.Echo("x.z = " + z);
// refers to x.y
with(y)
{
WScript.Echo("x.x = " + x);
WScript.Echo("x.y = " + y);
WScript.Echo("x.z = " + z);
}
y = new Object();
y.m = 7;
// refers to x.y
with(y)
{
WScript.Echo("x.y.m = " + m);
}
y = undefined;
if(y == undefined)
{
WScript.Echo("OK: y in with scope is undefined");
}
Z.prototype.zz = 1;
WScript.Echo("x.zz = " + zz);
// get rid of x.x
x = undefined;
if(x == undefined)
{
WScript.Echo("OK: x in with scope is undefined");
}
}
with(Z.prototype)
{
zz *= 10;
with(Z)
{
prototype.zz++;
with(prototype)
{
zz *= 100;
}
}
}
var q = new Y("a");
with(x)
{
WScript.Echo("x.x = " + x);
WScript.Echo("x.y = " + y);
WScript.Echo("x.z = " + z);
WScript.Echo("x.zz = " + zz);
}
with(q) { with(q) { with(q) {
WScript.Echo("q.a = " + a);
WScript.Echo("q.zz = " + zz);
}}}
(function () {
function a()
{
WScript.Echo("a is called");
}
(function(){
try {
throw a;
}
catch(x) {
with({}){
x();
}
}
})();
})();
(function () {
var o = {};
var y = function x(){
with(o){
x(o.x = function(){});
}
};
y();
})();