Skip to content

Commit 1638f85

Browse files
committed
add test
1 parent d358b18 commit 1638f85

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

test/src/test.test.js

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/** @private */
2+
const { a, b } = { a: '', b: '' };
3+
4+
/** @private */
5+
const [c, d] = ['', '' ];
6+
7+
export {
8+
a,
9+
b,
10+
e,
11+
f,
12+
aba,
13+
abx,
14+
};
15+
16+
/** @private */
17+
const [{ e, f }, [g, { j, k, l} ]] = [{ e() {}, f: '' }, [() => {}, { j: '' ,k: '', l: '' }]];
18+
19+
const aba = () => {};
20+
21+
/** @private */
22+
const abe = () => {};
23+
24+
/** @private */
25+
const { abs } = { abs: ''};
26+
27+
/** @private */
28+
function abx() {};
29+
30+
export {
31+
g,
32+
abs,
33+
j,
34+
abe,
35+
k,
36+
l,
37+
};

0 commit comments

Comments
 (0)