-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathscopedaccessors.js
70 lines (60 loc) · 2.07 KB
/
scopedaccessors.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
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
WScript.Echo("test1: nested setter without getter");
function top1() {
var xx = new Object();
Object.defineProperty(xx, "yy", { set: function(val) {WScript.Echo("in nested setter1"); this.val = 10;} });
var z = function() {
xx.yy = 20;
WScript.Echo(xx.yy);
}
return z;
}
var foo = top1();
foo();
WScript.Echo("test2: nested setter and setter");
function top2() {
var xx = new Object();
Object.defineProperty(xx, "yy", { get: function() { return this; },
set: function(val) {WScript.Echo("in nested setter2"); this.val = 11;} });
var z = function() {
xx.yy = 20;
WScript.Echo(xx.yy);
WScript.Echo(xx.yy.val);
}
return z;
}
var foo2 = top2();
foo2();
WScript.Echo("test3: nested setter and setter from this");
function top3() {
Object.defineProperty(this, "yy", { get: function() { return this; },
set: function(val) {WScript.Echo("in nested setter3"); this.val = 12;} });
var z = function() {
yy = 20;
WScript.Echo(yy);
WScript.Echo(yy.val); }
return z;
}
var foo3 = top3();
foo3();
WScript.Echo("test4: closure and with");
var withObj = new Object();
Object.defineProperty(withObj, "tt", { get: function() { return this; },
set: function(val) {WScript.Echo("in nested setter3"); this.val = 13;} });
function top4(inVar) {
with (inVar)
{
Object.defineProperty(this, "tt", { get: function() { return this; },
set: function(val) {WScript.Echo("in nested setter3"); this.val = 14;} });
var z = function() {
tt = 20;
WScript.Echo(tt);
WScript.Echo(tt.val); }
return z;
}
}
var foo4 = top4(withObj);
foo4();