From 993b194a7bc18881d7fe1be903a620348ab47460 Mon Sep 17 00:00:00 2001 From: Ilya Goncharov Date: Thu, 21 Oct 2021 19:37:03 +0300 Subject: [PATCH] [JS IR] Actualize JS files according to TS tests ^KT-37916 fixed ^KT-44494 fixed --- .../typescript-export/inheritance/inheritance__main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/js.translator/testData/typescript-export/inheritance/inheritance__main.js b/js/js.translator/testData/typescript-export/inheritance/inheritance__main.js index 9540ab956b0..4f59b96438a 100644 --- a/js/js.translator/testData/typescript-export/inheritance/inheritance__main.js +++ b/js/js.translator/testData/typescript-export/inheritance/inheritance__main.js @@ -26,12 +26,12 @@ var Impl = /** @class */ (function (_super) { }; Object.defineProperty(Impl.prototype, "acAbstractProp", { get: function () { return "Impl"; }, - enumerable: false, + enumerable: true, configurable: true }); Object.defineProperty(Impl.prototype, "y", { get: function () { return true; }, - enumerable: false, + enumerable: true, configurable: true }); return Impl;