Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 function NPList() {}
2 NPList.prototype = new Array;
4 var list = new NPList();
5 list.push('a');
7 var cut = list.splice(0, 1);
9 assertEq(cut[0], 'a');
10 assertEq(cut.length, 1);
11 assertEq(list.length, 0);
13 var desc = Object.getOwnPropertyDescriptor(list, "0");
14 assertEq(desc, undefined);
15 assertEq("0" in list, false);