From 8ddefd90e07b5dd0f1f765845af0b1c1f7b5c043 Mon Sep 17 00:00:00 2001 From: Nguyen Tran Date: Sun, 5 Mar 2023 18:16:04 -0500 Subject: [PATCH] Object destructuring now picks up literal properties --- src/compiler/compile/nodes/shared/Context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/compile/nodes/shared/Context.ts b/src/compiler/compile/nodes/shared/Context.ts index 5cef46482b..185e3b4c88 100644 --- a/src/compiler/compile/nodes/shared/Context.ts +++ b/src/compiler/compile/nodes/shared/Context.ts @@ -161,7 +161,7 @@ export function unpack_destructuring({ context_rest_properties }); } - } + } }); } }