summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Tuple/prototype/map/invoked-as-method.js
blob: bf838117b863320e428bd6d58aa93ff7e281e9a7 (plain)
1
2
3
4
5
6
7
8
9
10
// |reftest| skip-if(!this.hasOwnProperty("Tuple"))
var TuplePrototype = Tuple.prototype;

assertEq(typeof TuplePrototype.map, 'function');

assertThrowsInstanceOf(function() {
  TuplePrototype.map();
}, TypeError, "Tuple.prototype.map() with no argument");

reportCompare(0, 0);