mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
16 lines
242 B
JavaScript
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;
|
|
}
|
|
}
|