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
|
///////////////////////////////
// empty bodies
function empty1() { ; }
shouldBe("empty1()", "undefined");
function empty2() { }
shouldBe("empty2()", "undefined");
var g = 2;
var obj = new Object();
with (obj) {
obj.func = function(a) { return g*l*a; };
}
obj.l = 3;
shouldBe("obj.func(11)", "66");
///////////////////////////////
function ctor(xx) {
this.x = xx;
this.dummy = new Array(); // once broke the returned completion
}
c = new ctor(11);
shouldBe("c.x", "11");
///////////////////////////////
// anonymous functions
///////////////////////////////
f = function (arg) {
return arg;
};
shouldBe("f('bbbbb')", "'bbbbb'");
function f() {return 1;};
// just verify that this can be parsed
Math.round(function anon() { });
///////////////////////////////
// arguments object
///////////////////////////////
function foo() {
var result = "|";
for (i = 0; i < arguments.length; i++)
result += arguments[i] + "|";
return result;
}
shouldBe("foo()", "'|'");
shouldBe("foo('bar')", "'|bar|'");
shouldBe("foo('bar', 'x')", "'|bar|x|'");
function foo2(a) {
var i = 0;
for(a in arguments) // should NOT be enumerable
i++;
return i;
}
shouldBe("foo2(7)", "0");
// I have my doubts about the standard conformance of this
function foo3(i, j) {
switch(i) {
case 0:
return foo3.arguments.length;
case 1:
return foo3.arguments;
case 2:
return foo3.j;
}
}
shouldBe("foo3(0, 99)", "2");
shouldBe("foo3(1, 99).length", "2");
//shouldBe("foo3(2, 99)", "99"); // IE doesn't support this either
///////////////////////////////
// nested function declarations
///////////////////////////////
function nest0(a, b)
{
function nest1(c) { return c*c; }
return nest1(a*b);
}
shouldBe("nest0(2,3)", "36");
///////////////////////////////
// Function object
///////////////////////////////
shouldBe("(new Function('return 11;'))()", "11");
shouldBe("(new Function('', 'return 22;'))()", "22");
shouldBe("(new Function('a', 'b', 'return a*b;'))(11, 3)", "33");
shouldBe("(new Function(' a ', ' b ', 'return a*b;'))(11, 4)", "44");
shouldBe("(new Function(' a,b ', ' c ', 'return a*b;'))(11, 5)", "55");
shouldBe("(new Function(' a,b ', ' c3 ', 'return a*b;'))(11, 6)", "66");
///////////////////////////////
// length property
function funcp3(a, b, c) { }
shouldBe("funcp3.length", "3");
shouldBe("(function(a, b, c, d) { }).length", "4");
shouldBe("(new Function('a', 'b', '')).length", "2");
// recursive call
function f4(i)
{
return i == 1 ? 1 : i*f4(i-1);
}
shouldBe("f4(4)", "24");
function f5(a) {
return f6();
}
function f6() {
return f5.arguments[0];
}
shouldBe("f5(11)", "11");
shouldBe("f5.arguments", "null");
///////////////////////////////
// calling conventions
///////////////////////////////
function manipulate(x) {
x[0] = 99; // should operate on reference
x = "nothing"; // should detach
}
var arr = new Array(1, 2, 3);
manipulate(arr);
shouldBe("arr[0]", "99");
arr = [1, 2, 3];
manipulate(arr);
shouldBe("arr[0]", "99");
///////////////////////////////
// toString() on functions
///////////////////////////////
function orgFunc(s) { return 'Hello ' + s; }
eval("var orgFuncClone = " + orgFunc);
shouldBe("typeof orgFuncClone", "'function'");
shouldBe("orgFuncClone('world')", "'Hello world'");
function groupFunc(a, b) { return (a+b)*3; } // check for () being preserved
eval("var groupClone = " + groupFunc);
shouldBe("groupClone(1, 2)", "9");
var sinStr = 'function sin() {\n [native code]\n}'
shouldBe("String(Math.sin)", "sinStr");
///////////////////////////////
// shadowed functions
///////////////////////////////
function shadow() { return 1; }
function shadow() { return 2; }
shouldBe("shadow()", "2");
///////////////////////////////
// nested functions
var nest_property = "global nest";
function nested_outer() {
var nest_property = "inner nest";
function nested_inner() {
return nest_property;
}
return nested_inner;
}
function not_nested() {
return nest_property;
}
nested_outer.nest_property = "outer nest";
var nested = nested_outer();
var nestedret = nested();
shouldBe("nestedret","'inner nest'");
var not_nestedret = not_nested();
shouldBe("not_nestedret","'global nest'");
///////////////////////////////
// other properties
///////////////////////////////
function sample() { }
shouldBeUndefined("sample.prototype.prototype");
shouldBeTrue("sample.prototype.constructor == sample");
var caught = false;
try {
sample.apply(1, 1); // invalid argument
} catch(dummy) {
caught = true;
}
shouldBeTrue("caught");
function functionWithVarOverride(a) {
var a = 2;
return a;
}
shouldBe("functionWithVarOverride(1)", "2");
successfullyParsed = true
|