diff options
author | 李瑞丰 <li15227870916@gmail.com> | 2021-09-25 01:07:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-25 02:07:22 +0900 |
commit | 46245b830a24930ab36f8ce2831325cdd1da17d3 (patch) | |
tree | c96c2a69a30120d2cdf639b72a3bace836417151 /ext/web/13_message_port.js | |
parent | 9705efd419ffa05b0d88e788e0ceb77e38078449 (diff) |
fix(ext/webidl): correctly apply [SymbolToStringTag] to interfaces (#11851)
Co-authored-by: Luca Casonato <hello@lcas.dev>
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
Diffstat (limited to 'ext/web/13_message_port.js')
-rw-r--r-- | ext/web/13_message_port.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ext/web/13_message_port.js b/ext/web/13_message_port.js index 2768c0a92..c02b373d6 100644 --- a/ext/web/13_message_port.js +++ b/ext/web/13_message_port.js @@ -22,7 +22,6 @@ ObjectSetPrototypeOf, Symbol, SymbolFor, - SymbolToStringTag, TypeError, WeakSet, WeakSetPrototypeAdd, @@ -59,10 +58,6 @@ inspect({ port1: this.port1, port2: this.port2 }) }`; } - - get [SymbolToStringTag]() { - return "MessageChannel"; - } } webidl.configurePrototype(MessageChannel); @@ -174,10 +169,6 @@ this[_id] = null; } } - - get [SymbolToStringTag]() { - return "MessagePort"; - } } defineEventHandler(MessagePort.prototype, "message", function (self) { |