-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathforin_lib.js
59 lines (50 loc) · 1.37 KB
/
forin_lib.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
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
var global = this;
function Dump(s)
{
var o = global[s];
if (!o) { return; }
WScript.Echo("for..in " + s);
for (var i in o)
{
WScript.Echo(" " + i + " = " + o[i]);
}
WScript.Echo("for..in " + s + " (with blah)");
o.blah = "b";
for (var i in o)
{
WScript.Echo(" " + i + " = " + o[i]);
}
try
{
var newobj = new o();
WScript.Echo("for..in new " + s);
for (var i in newobj)
{
WScript.Echo(" " + i + " = " + newobj[i]);
}
WScript.Echo("for..in " + s + " (with prototype.blah2)");
o.prototype.blah2 = s;
for (var i in newobj)
{
WScript.Echo(" " + i + " = " + newobj[i]);
}
}
catch (e)
{
}
WScript.Echo();
}
Dump("Object");
Dump("Array");
Dump("String");
Dump("Function");
Dump("Math");
Dump("JSON");
Dump("Number");
Dump("Boolean");
Dump("Date");
Dump("RegExp");