-
Notifications
You must be signed in to change notification settings - Fork 469
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test getters on symbols or wrapper objects
- Loading branch information
1 parent
28a66ce
commit 21c2bab
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
test/built-ins/Symbol/prototype/description/this-val-symbol.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright 2018 Igalia, S.L. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
esid: sec-symbol.prototype.description | ||
description: > | ||
Test that calling the getter on a Symbol or a Symbol wrapper object works. | ||
info: | | ||
1. Let s be the this value. | ||
2. Let sym be ? thisSymbolValue(s). | ||
3. Return sym.[[Description]]. | ||
features: [Symbol.prototype.description] | ||
---*/ | ||
|
||
const getter = Object.getOwnPropertyDescriptor( | ||
Symbol.prototype, 'description' | ||
).get; | ||
|
||
const symbol = Symbol('test'); | ||
assert.sameValue(getter.call(symbol), 'test'); | ||
assert.sameValue(getter.call(Object(symbol)), 'test'); | ||
|
||
const empty = Symbol(); | ||
assert.sameValue(getter.call(empty), undefined); | ||
assert.sameValue(getter.call(Object(empty)), undefined); | ||
|
||
const undef = Symbol(undefined); | ||
assert.sameValue(getter.call(undef), undefined); | ||
assert.sameValue(getter.call(Object(undef)), undefined); | ||
|
||
const emptyStr = Symbol(''); | ||
assert.sameValue(getter.call(emptyStr), ''); | ||
assert.sameValue(getter.call(Object(emptyStr)), ''); |