| // Copyright (C) 2014 the V8 project authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| In a class, duplicate computed property getter names produce only a single property of |
| that name, whose value is the value of the last property of that name. |
| assert.sameValue(new C().a, 'A', "The value of `new C().a` is `'A'`"); |
| $ERROR("The first `b` getter definition in `C2` is unreachable"); |
| assert.sameValue(new C2().b, 'B', "The value of `new C2().b` is `'B'`"); |
| $ERROR("The first `c` getter definition in `C3` is unreachable"); |
| $ERROR("The second `c` getter definition in `C3` is unreachable"); |
| assert.sameValue(new C3().c, 'C', "The value of `new C3().c` is `'C'`"); |
| $ERROR("The first `d` getter definition in `C4` is unreachable"); |
| assert.sameValue(new C4().d, 'D', "The value of `new C4().d` is `'D'`"); |