<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Use Help > Report Issue to prefill these. --> - VSCode Version: 1.43.2 - OS Version: Win 10 / macOS Catalina Steps to Reproduce: ```js class X { _test = ""; /** * Test read */ get test() { return this._test; } /** * Test write */ set test(value) { this._test = value; } } const x = new X(); x.test = ""; // Hovering over `test` shows "Test read Test write", Expected "Test write" console.log(x.test); // Hovering over `test` shows "Test read Test write", Expected "Test read" ``` <!-- Launch with `code --disable-extensions` to check. --> Does this issue occur when all extensions are disabled?: Yes