michael@0: load(libdir + "eqArrayHelper.js"); michael@0: michael@0: function g(a, b, c) { michael@0: this.value = [a, b, c]; michael@0: assertEq(Object.getPrototypeOf(this), g.prototype); michael@0: assertEq(arguments.callee, g); michael@0: } michael@0: michael@0: assertEqArray(new g(...[1, 2, 3]).value, [1, 2, 3]);