From 8136613e3ffbce798bbbe12e5041001f96093dda Mon Sep 17 00:00:00 2001 From: Robert Rosman Date: Sun, 5 Jan 2025 07:46:49 +0100 Subject: [PATCH] remove comment about Internet explorer 10 support Internet explorer 10 reached end of life five years ago, is it still relevant to include this comment? --- packages/documentation/copy/en/handbook-v2/Classes.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/documentation/copy/en/handbook-v2/Classes.md b/packages/documentation/copy/en/handbook-v2/Classes.md index da70ad9bd633..404d1a51b4cd 100644 --- a/packages/documentation/copy/en/handbook-v2/Classes.md +++ b/packages/documentation/copy/en/handbook-v2/Classes.md @@ -597,9 +597,6 @@ class MsgError extends Error { However, any subclass of `MsgError` will have to manually set the prototype as well. For runtimes that don't support [`Object.setPrototypeOf`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf), you may instead be able to use [`__proto__`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/proto). -Unfortunately, [these workarounds will not work on Internet Explorer 10 and prior](). -One can manually copy methods from the prototype onto the instance itself (i.e. `MsgError.prototype` onto `this`), but the prototype chain itself cannot be fixed. - ## Member Visibility You can use TypeScript to control whether certain methods or properties are visible to code outside the class.