mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
20 lines
327 B
JavaScript
20 lines
327 B
JavaScript
|
/** @module test */
|
||
|
|
||
|
/** Test class */
|
||
|
export default class {
|
||
|
/**
|
||
|
* Test constructor
|
||
|
* @param {string} foo - The foo parameter
|
||
|
*/
|
||
|
constructor(foo) {
|
||
|
/** Test member */
|
||
|
this.foo = foo;
|
||
|
}
|
||
|
|
||
|
/** Test method */
|
||
|
test() {}
|
||
|
|
||
|
/** Test static method */
|
||
|
static staticTest() {}
|
||
|
}
|