swc/crates/jsdoc/tests/fixtures/getset2.js

16 lines
242 B
JavaScript
Raw Normal View History

2020-08-14 12:20:25 +03:00
/** Employee class. */
class Employee {
/**
* Location.
* @type {string}
*/
get location() {
return this._location;
}
/** @type {string} */
set location(loc) {
this._location = loc;
}
}