-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy patharguments2.js
448 lines (341 loc) · 9.98 KB
/
arguments2.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function write(v) { WScript.Echo(v + ""); }
var errorCount = 0;
var r;
function verify(scen, act, exp) {
write(scen + " : " + act);
if (act !== exp) {
write("FAILED : " + scen + " exp: " + exp + " act : " + act);
errorCount++;
} else {
write("PASSED : " + scen + " exp: " + exp + " act : " + act);
}
}
// --------------------------------------------------------------------------------------------------
function Test1(a, b) {
write(arguments.hasOwnProperty("0"));
write(arguments.hasOwnProperty("length"));
return arguments[0] + arguments[1];
}
r = Test1(10, 20);
verify("Test1", r, 30);
// --------------------------------------------------------------------------------------------------
function Test2(a, b) {
a = 100;
verify("Test2 arguments[0]", arguments[0], 100);
b = 200;
verify("Test2 arguments[1]", arguments[1], 200);
arguments[0] = 300;
verify("Test2 a", a, 300);
arguments[1] = 400;
verify("Test2 b", b, 400);
return a + b + arguments[0] + arguments[1];
}
r = Test2(10, 20);
verify("Test2", r, 1400);
// --------------------------------------------------------------------------------------------------
function Test3(a, b) {
var arguments = new Object();
if (arguments[0] == a)
verify("Test3 a", a);
if (arguments[1] == b)
verify("Test3 b", b);
arguments[0] = a;
arguments[1] = b;
a = a + 1;
b = b + 1;
if (arguments[0] == a)
verify("Test3 a1", a);
if (arguments[1] == b)
verify("Test3 b1", b);
return 0;
}
r = Test3(10, 20);
verify("Test3", r, 0);
// --------------------------------------------------------------------------------------------------
function Test4(a, b, arguments) {
if (arguments[0] == a)
verify("Test4 a", a);
if (arguments[1] == b)
verify("Test4 b", b);
arguments[0] = a;
arguments[1] = b;
a = a + 1;
b = b + 1;
if (arguments[0] == a)
verify("Test4 a1", a);
if (arguments[1] == b)
verify("Test4 b1", b);
return 0;
}
r = Test4(10, 20, new Object());
verify("Test4", r, 0);
// --------------------------------------------------------------------------------------------------
function Test5(a, b) {
var count = 0;
arguments[0] = 100;
arguments[1] = 200;
for (var i in arguments) {
count++;
}
return count;
}
r = Test5(10);
verify("Test5 1", r, 2);
r = Test5(10, 20);
verify("Test5 2", r, 2);
r = Test5(10, 20, 30);
verify("Test5 3", r, 3);
// --------------------------------------------------------------------------------------------------
function Test6(a, b) {
var count = 0;
for (var i in arguments) {
count = count + 1;
}
return count;
}
r = Test6(10);
verify("Test6 1", r, 1);
r = Test6(10, 20);
verify("Test6 2", r, 2);
r = Test6(10, 20, 30);
verify("Test6 3", r, 3);
// --------------------------------------------------------------------------------------------------
function Test7() {
return arguments.length;
}
r = Test7();
verify("Test7", r, 0);
r = Test7(10, 20);
verify("Test7", r, 2);
// --------------------------------------------------------------------------------------------------
var callCount = 5;
function Test8() {
var calledCount = 0;
write("Test8 : " + callCount);
if (callCount != 0) {
callCount = callCount - 1;
calledCount = arguments.callee() + 1;
}
return calledCount;
}
r = Test8();
verify("Test8", r, 5);
// --------------------------------------------------------------------------------------------------
function Test9() {
write(arguments.hasOwnProperty("length"));
write(arguments[0] + " " + arguments[1] + " " + arguments.length);
arguments.length = "test";
write(arguments[0] + " " + arguments[1] + " " + arguments.length);
write(arguments.hasOwnProperty("0"));
write(arguments.hasOwnProperty("length"));
return arguments.length;
}
r = Test9();
verify("Test9", r, "test");
r = Test9(10);
verify("Test9", r, "test");
r = Test9(10, 20);
verify("Test9", r, "test");
r = Test9(10, 20, 30);
verify("Test9", r, "test");
// --------------------------------------------------------------------------------------------------
// Test arguments for-in enumeration
function dump_props(obj) {
var s = "";
for (p in obj) {
if (!s) {
s = "[" + p + ": " + obj[p];
} else {
s += ", " + p + ": " + obj[p];
}
}
if (s) {
s += "]";
} else {
s = "[]";
}
return s;
}
//
// simply dump args
//
var dump_args = function (a, b) {
return dump_props(arguments);
}
verify("Test10.1",
dump_args(),
"[]");
verify("Test10.1",
dump_args(13),
"[0: 13]");
verify("Test10.1",
dump_args(13, 24),
"[0: 13, 1: 24]");
verify("Test10.1",
dump_args(13, 24, "string", true),
"[0: 13, 1: 24, 2: string, 3: true]");
//
// make some changes then dump
//
dump_args = function (a, b) {
arguments[0] = 98;
b = 54;
arguments[8] = false;
arguments[10] = 21;
arguments.foo = 'bar';
return dump_props(arguments);
}
verify("Test10.2",
dump_args(),
"[0: 98, 8: false, 10: 21, foo: bar]");
verify("Test10.2",
dump_args(13),
"[0: 98, 8: false, 10: 21, foo: bar]");
verify("Test10.2",
dump_args(13, 24),
"[0: 98, 1: 54, 8: false, 10: 21, foo: bar]");
verify("Test10.2",
dump_args(13, 24, "string", true),
"[0: 98, 1: 54, 2: string, 3: true, 8: false, 10: 21, foo: bar]");
//
// delete and dump
//
var get_args = function (a0, a1, a2, a3, a4) {
return arguments;
}
var delete_args_test = function (args, exp_del, exp_set) {
delete args[1];
delete args[3];
verify("Test10.3.1", dump_props(args), exp_del);
args.foo = "bar";
args[6] = "arg6";
args[2] = "arg2";
args[1] = "arg1";
verify("Test10.3.2", dump_props(args), exp_set);
}
delete_args_test(get_args(),
"[]",
"[1: arg1, 2: arg2, 6: arg6, foo: bar]"
);
delete_args_test(get_args(13),
"[0: 13]",
"[0: 13, 1: arg1, 2: arg2, 6: arg6, foo: bar]"
);
delete_args_test(get_args(13, 24),
"[0: 13]", //[1] deleted
"[0: 13, 1: arg1, 2: arg2, 6: arg6, foo: bar]"
// [1] set after formal args
);
delete_args_test(get_args(13, 24, "string", true),
"[0: 13, 2: string]", //[1][3] deleted
"[0: 13, 2: arg2, 1: arg1, 6: arg6, foo: bar]"
//[1] set after formal args [0][2]
);
function Test11() {
var _t11;
function inner11() {
arguments.valueOf = function() { _t11 = this; }
var x = arguments++;
return x;
}
inner11("sentinel");
verify("Test11 args", _t11[0], "sentinel");
}
Test11();
function Test12() {
function inner12() {
throw arguments;
}
try {
inner12("sentinel");
} catch (e) {
verify("Test12 args", e[0], "sentinel");
}
}
Test12();
function Test13() {
var _t13;
function inner13() {
arguments.capture = function() { _t13 = this }
with(arguments)
capture();
}
inner13("sentinel");
verify("Test13 args", _t13[0], "sentinel");
}
Test13();
function TestBuiltInProperty(propName) {
write("");
write("-------Testing built-in " + propName + " Implementation----");
verify("HasOwnProperty() test", arguments.hasOwnProperty(propName), true);
verify("IsEnumerable() test", arguments.propertyIsEnumerable(propName), false);
arguments[propName] = 40;
verify("Overriding value test", arguments[propName], 40);
delete arguments[propName];
verify("HasOwnProperty() after deletion test", arguments.hasOwnProperty(propName), false);
verify("Value after deletion test", arguments[propName], undefined);
}
TestBuiltInProperty("callee");
TestBuiltInProperty("length");
function Test15() {
var count = 0;
arguments.length += 10;
arguments.length -= 10;
arguments[0] = 100;
arguments[1] = 200;
for (var i in arguments) {
count++;
}
verify("Test15", count, 2);
}
Test15();
function Test16() {
verify("Test16", arguments.length, 3);
function Test16_inner() {
eval("");
}
}
Test16(1, 2, 3);
function Test17(a) {
verify("Test17.1", arguments.length, 1);
verify("Test17.2", a, "Feb20");
function Test17_inner() {
eval("");
}
}
Test17("Feb20");
// Test that changing arguments in one function is reflected in the caller
function Test18_Helper() {
Test18_Helper.caller.arguments.Test18_Value = "Test 18 Value";
}
function Test18() {
verify("Test18.1", arguments.Test18_Value, undefined);
Test18_Helper();
verify("Test18.2", arguments.Test18_Value, undefined);
}
Test18();
function Test19(flag)
{
if (flag)
{
write("test19 called");
}
else
{
Test19_Helper();
}
}
function Test19_Helper()
{
arguments.callee.caller(true);
}
Test19();
// --------------------------------------------------------------------------------------------------
if (errorCount > 0) {
write(errorCount + " Tests ");
throw new Error(errorCount);
}