aboutsummaryrefslogtreecommitdiff
path: root/integration/snapshots/optional-chain-with-function.hmr.debug.js
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-12-16 01:31:09 -0800
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-12-16 01:31:09 -0800
commitca807afba22272f482542aeb99b2f43195775cb5 (patch)
tree90f2a1a23d63e6303dfe9890bfc93158041af233 /integration/snapshots/optional-chain-with-function.hmr.debug.js
parente349e54cb8e4b2a36b7245e2bdbbe1f47453e196 (diff)
downloadbun-ca807afba22272f482542aeb99b2f43195775cb5.tar.gz
bun-ca807afba22272f482542aeb99b2f43195775cb5.tar.zst
bun-ca807afba22272f482542aeb99b2f43195775cb5.zip
:camera:
Diffstat (limited to 'integration/snapshots/optional-chain-with-function.hmr.debug.js')
-rw-r--r--integration/snapshots/optional-chain-with-function.hmr.debug.js6
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;
}