We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e817278 commit ebe70c3Copy full SHA for ebe70c3
rewriter/native/destructuring.js
@@ -0,0 +1,8 @@
1
+({ location } = self);
2
+({ location: a } = self);
3
+({ location = parent } = self);
4
+({ ["location"]: a } = self);
5
+({ ["location"]: a = parent } = self);
6
+({ parent: { location: x } } = self);
7
+({ parent: { location: x = parent } } = self);
8
+({ parent: { location } } = self);
0 commit comments