summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Tuple/prototype/indexOf/fromIndex-side-effects-3.js
blob: b2a98cc58a4618946ff4f50067f90b72cfcf44b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// |reftest| skip-if(!this.hasOwnProperty("Tuple"))
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
    Tuple.prototype.indexOf - side effects produced by step 1 are
    visible when an exception occurs
---*/

var stepFiveOccurs = false;
var fromIndex = {
  valueOf: function() {
    stepFiveOccurs = true;
    return 0;
  }
};
assertThrowsInstanceOf(function() {
  Tuple.prototype.indexOf.call(undefined, undefined, fromIndex);
}, TypeError);
assertEq(stepFiveOccurs, false, 'stepFiveOccurs');

reportCompare(0, 0);