summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Tuple/prototype/Symbol.toStringTag/invoked-as-accessor.js
blob: 809a8a41bfb8ac6ce2901f50bd620965b2bd98b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// |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.
/*---
esid: sec-get-%Tuple%.prototype-@@tostringtag
description: >
info: |
  8.2.3.4 %Tuple%.prototype [ @@toStringTag ]

The initial value of Tuple.prototype[@@toStringTag] is the String value "Tuple".

This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }.

features: [Symbol.toStringTag, Tuple]
---*/

var TuplePrototype = Tuple.prototype;

assertEq(TuplePrototype[Symbol.toStringTag], "Tuple");

reportCompare(0, 0);