diff options
Diffstat (limited to 'integration/snapshots/optional-chain-with-function.debug.js')
-rw-r--r-- | integration/snapshots/optional-chain-with-function.debug.js | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/integration/snapshots/optional-chain-with-function.debug.js b/integration/snapshots/optional-chain-with-function.debug.js deleted file mode 100644 index 4b53bb5ed..000000000 --- a/integration/snapshots/optional-chain-with-function.debug.js +++ /dev/null @@ -1,15 +0,0 @@ -export function test() { - try { - 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); - } catch (e) { - throw e; - } - return testDone(import.meta.url); -} - -//# sourceMappingURL=http://localhost:8080/optional-chain-with-function.js.map |