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