Skip to content

Commit 1567e9d

Browse files
committed
fix incorrect javascript syntax
1 parent 8038b0e commit 1567e9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/references.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -499,9 +499,9 @@ describe('References:', function() {
499499
'let a; a = 0;',
500500
'let a; [a] = [];',
501501
'let a; [a = 1] = [];',
502-
'let a; ({a}) = {};',
503-
'let a; ({b: a}) = {};',
504-
'let a; ({b: a = 0}) = {};',
502+
'let a; ({a} = {});',
503+
'let a; ({b: a} = {});',
504+
'let a; ({b: a = 0} = {});',
505505
'let a; for (a in []);',
506506
'let a; for ([a] in []);',
507507
'let a; for ([a = 0] in []);',

0 commit comments

Comments
 (0)