diff options
Diffstat (limited to 'integration/snapshots/optional-chain-with-function.hmr.debug.js')
-rw-r--r-- | integration/snapshots/optional-chain-with-function.hmr.debug.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/integration/snapshots/optional-chain-with-function.hmr.debug.js b/integration/snapshots/optional-chain-with-function.hmr.debug.js index 5bf65a6f8..acd656901 100644 --- a/integration/snapshots/optional-chain-with-function.hmr.debug.js +++ b/integration/snapshots/optional-chain-with-function.hmr.debug.js @@ -13,9 +13,9 @@ var hmr = new HMR(3608848620, "optional-chain-with-function.js"), exports = hmr. const multipleSecondaryValues = undefined; const ratings = ["123"]; var bar = multipleSecondaryValues?.map((value) => false); - bar = (bar?.multipleSecondaryValues)?.map((value) => false); - bar = (bar?.bar?.multipleSecondaryValues)?.map((value) => false); - bar = ({}?.bar?.multipleSecondaryValues)?.map((value) => false); + bar = bar?.multipleSecondaryValues?.map((value) => false); + bar = bar?.bar?.multipleSecondaryValues?.map((value) => false); + bar = {}?.bar?.multipleSecondaryValues?.map((value) => false); } catch (e) { throw e; } |