Skip to content

Commit 94ec751

Browse files
committed
bump [email protected] + fix types
1 parent 59acd4b commit 94ec751

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/compiler/compile/nodes/shared/Context.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ export function unpack_destructuring(contexts: Context[], node: Node, modifier:
4343
node => x`@object_without_properties(${modifier(node)}, [${used_properties}])` as Node
4444
);
4545
} else {
46-
const key = property.key as Identifier;
47-
const value = property.value;
46+
const key = props.key as Identifier;
47+
const value = props.value;
4848

4949
used_properties.push(x`"${(key as Identifier).name}"`);
5050
if (value.type === 'AssignmentPattern') {

0 commit comments

Comments
 (0)