例のように、コンストラクターでパラメーターとプロパティの名前が同じである場合、@property と @param に 2 つの別々の行を入力する必要を回避する方法はありますか。
/**
* Class for representing a point in 2D space.
* @property {number} x The x coordinate of this point.
* @property {number} y The y coordinate of this point.
* @constructor
* @param {number} x The x coordinate of this point.
* @param {number} y The y coordinate of this point.
* @return {Point} A new Point
*/
Point = function (x, y)
{
this.x = x;
this.y = y;
}