Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions test/src/test copy.js
Original file line number Diff line number Diff line change
@@ -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,
};
30 changes: 30 additions & 0 deletions test/src/test.js
Original file line number Diff line number Diff line change
@@ -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 {}
37 changes: 37 additions & 0 deletions test/src/test.test.js
Original file line number Diff line number Diff line change
@@ -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,
};
20 changes: 20 additions & 0 deletions test/src/test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// @private
type a = {}

// @private
interface A {}


export {
B,
b,
};


// @private
interface B {}

// @private
type b = {
a: A,
}
Loading