summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Tuple/prototype/includes/return-abrupt-tointeger-fromindex-symbol.js
blob: 9f6a0f59380e7b4f8f1f854a45e68c7a87cb2b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// |reftest| skip-if(!this.hasOwnProperty("Tuple"))
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: Return abrupt from ToInteger(fromIndex) - using symbol
---*/

var fromIndex = Symbol("1");

var sample = #[7];

assertThrowsInstanceOf(() => sample.includes(7, fromIndex), TypeError);

reportCompare(0, 0);