diff --git a/test/src/test copy.js b/test/src/test copy.js new file mode 100644 index 0000000..f9fb3f0 --- /dev/null +++ b/test/src/test copy.js @@ -0,0 +1,32 @@ +/** @private */ +export const a = {}; + +class okClass {} + +function okFunction() {} + +/** @private */ +export class b {}; + +/** @private */ +function c() {} + +const okVar = {}; + +/** @private */ +const out = {}; + +function okD() {} + +/** @private */ +class outE {} + +export { + okClass, + outE, + okFunction, + okVar, + out, + okD, + c, +}; \ No newline at end of file diff --git a/test/src/test.js b/test/src/test.js new file mode 100644 index 0000000..680d0e2 --- /dev/null +++ b/test/src/test.js @@ -0,0 +1,30 @@ +/** @private */ +export const test = {}; + +function v(){}; + +export { + a, + def, + aAX, + bc, +}; + +/** @private */ +function a(){}; + +/** @private */ +class bc {} + +export { + abc, +}; + +/** @private */ +const abc = {}; + +/** @private */ +const def = {}; + +/** @private */ +class aAX {} \ No newline at end of file diff --git a/test/src/test.test.js b/test/src/test.test.js new file mode 100644 index 0000000..322d264 --- /dev/null +++ b/test/src/test.test.js @@ -0,0 +1,37 @@ +/** @private */ +const { a, b } = { a: '', b: '' }; + +/** @private */ +const [c, d] = ['', '' ]; + +export { + a, + b, + e, + f, + aba, + abx, +}; + +/** @private */ +const [{ e, f }, [g, { j, k, l} ]] = [{ e() {}, f: '' }, [() => {}, { j: '' ,k: '', l: '' }]]; + +const aba = () => {}; + +/** @private */ +const abe = () => {}; + +/** @private */ +const { abs } = { abs: ''}; + +/** @private */ +function abx() {}; + +export { + g, + abs, + j, + abe, + k, + l, +}; diff --git a/test/src/test.ts b/test/src/test.ts new file mode 100644 index 0000000..f6d6301 --- /dev/null +++ b/test/src/test.ts @@ -0,0 +1,20 @@ +// @private +type a = {} + +// @private +interface A {} + + +export { + B, + b, +}; + + +// @private +interface B {} + +// @private +type b = { + a: A, +} \ No newline at end of file