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

25 lines
405 B
JavaScript
Raw Normal View History

2020-08-14 12:20:25 +03:00
/**
* Increment a number by 1.
*
* @param {number} n - The number to increment.
*/
var increment = n => n + 1;
/**
* Print a value to the console.
*/
var print = (/** @type {*} */ val) => console.log(val);
/**
* Create a class with a `name` property.
*/
var createClass = () => class {
get name() {
return this._name;
}
set name(value) {
this._name = value;
}
}