Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / TypedArrayConstructors / internals / Set / detached-buffer-key-is-symbol.js
blob183070c85b5828b1b9724df1e016473ae0727914
1 // Copyright (C) 2016 the V8 project authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
3 /*---
4 esid: sec-integer-indexed-exotic-objects-set-p-v-receiver
5 description: >
6   Does not throw on an instance with a detached buffer if key is a Symbol
7 info: |
8   9.4.5.5 [[Set]] ( P, V, Receiver)
10   ...
11   2. If Type(P) is String, then
12     ...
13   3. Return ? OrdinarySet(O, P, V, Receiver).
14 includes: [testTypedArray.js, detachArrayBuffer.js]
15 features: [align-detached-buffer-semantics-with-web-reality, Symbol, Reflect, TypedArray]
16 ---*/
18 let s = Symbol("1");
20 testWithTypedArrayConstructors(function(TA) {
21   let sample = new TA(2);
22   $DETACHBUFFER(sample.buffer);
24   assert.sameValue(
25     Reflect.set(sample, s, "test262"),
26     true,
27     'Reflect.set(sample, "Symbol(\\"1\\")", "test262") must return true'
28   );
29   assert.sameValue(sample[s], "test262", 'The value of sample[s] is "test262"');
30 });
32 reportCompare(0, 0);