From 4a2d6d07fea24131e47c90f0cf8eb4997c98d629 Mon Sep 17 00:00:00 2001 From: Michael Ficarra Date: Wed, 20 Feb 2019 13:37:14 -0800 Subject: [PATCH] add Symbol.prototype.description getter (#1346) --- spec.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/spec.html b/spec.html index 157670ef44..35629a979b 100644 --- a/spec.html +++ b/spec.html @@ -25120,6 +25120,16 @@

Runtime Semantics: SymbolDescriptiveString ( _sym_ )

+ +

get Symbol.prototype.description

+

`Symbol.prototype.description` is an accessor property whose set accessor function is *undefined*. Its get accessor function performs the following steps:

+ + 1. Let _s_ be the *this* value. + 1. Let _sym_ be ? thisSymbolValue(_s_). + 1. Return _sym_.[[Description]]. + +
+

Symbol.prototype.valueOf ( )

The following steps are taken: