summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/Symbol.toStringTag/invoked-as-accessor.js
blob: a6fcea8365c09b4201ef6abe51b1b0356c546fba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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-%typedarray%.prototype-@@tostringtag
description: >
  Return undefined if this value does not have a [[TypedArrayName]] internal slot
info: |
  22.2.3.31 get %TypedArray%.prototype [ @@toStringTag ]

  1. Let O be the this value.
  ...
  3. If O does not have a [[TypedArrayName]] internal slot, return undefined.
  ...
includes: [testTypedArray.js]
features: [Symbol.toStringTag, TypedArray]
---*/

var TypedArrayPrototype = TypedArray.prototype;

assert.sameValue(TypedArrayPrototype[Symbol.toStringTag], undefined);