jsdoc/test/fixtures/getset2.js
Jeff Williams 4b8504cac9 support ES 2015 classes (#555, #769)
Incorporates work by @eventualbuddha.
2015-03-18 17:14:04 -07: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;
}
}