swc/ecmascript/jsdoc/tests/fixtures/getset2.js
2020-08-14 18:20:25 +09:00

16 lines
242 B
JavaScript

/** Employee class. */
class Employee {
/**
* Location.
* @type {string}
*/
get location() {
return this._location;
}
/** @type {string} */
set location(loc) {
this._location = loc;
}
}