mirror of https://github.com/tc39/test262.git
56 lines
919 B
JavaScript
56 lines
919 B
JavaScript
|
// Copyright (C) Copyright 2014 the V8 project authors. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
/*---
|
||
|
es6id: 12.2.5
|
||
|
description: >
|
||
|
In a class, duplicate computed property setter names produce only a single property of
|
||
|
that name, whose value is the value of the last property of that name.
|
||
|
---*/
|
||
|
var calls = 0;
|
||
|
class C {
|
||
|
set ['a'](_) {
|
||
|
calls++;
|
||
|
}
|
||
|
}
|
||
|
new C().a = 'A';
|
||
|
assert.sameValue(calls, 1);
|
||
|
|
||
|
calls = 0;
|
||
|
class C2 {
|
||
|
set b(_) {
|
||
|
assert(false);
|
||
|
}
|
||
|
set ['b'](_) {
|
||
|
calls++;
|
||
|
}
|
||
|
}
|
||
|
new C2().b = 'B';
|
||
|
assert.sameValue(calls, 1);
|
||
|
|
||
|
calls = 0;
|
||
|
class C3 {
|
||
|
set c(_) {
|
||
|
assert(false)
|
||
|
}
|
||
|
set ['c'](_) {
|
||
|
assert(false)
|
||
|
}
|
||
|
set ['c'](_) {
|
||
|
calls++
|
||
|
}
|
||
|
}
|
||
|
new C3().c = 'C';
|
||
|
assert.sameValue(calls, 1);
|
||
|
|
||
|
calls = 0;
|
||
|
class C4 {
|
||
|
set ['d'](_) {
|
||
|
assert(false)
|
||
|
}
|
||
|
set d(_) {
|
||
|
calls++
|
||
|
}
|
||
|
}
|
||
|
new C4().d = 'D';
|
||
|
assert.sameValue(calls, 1);
|