summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Tuple/constructor/8.2.2.js
blob: 938f7896d78cffdb12151edcbd485223ef904e7e (plain)
1
2
3
4
5
6
7
8
9
10
11
// |reftest| skip-if(!this.hasOwnProperty("Tuple"))

/*
8.2.2 Properties of the Tuple Constructor
The Tuple constructor:

has a [[Prototype]] internal slot whose value is %Function.prototype%.
*/
assertEq(Object.getPrototypeOf(Tuple), Function.prototype);

reportCompare(0, 0);