JSDoc Toolkit - Как указать @param и @property в одной строке

Есть ли способ избежать ввода двух отдельных строк для @property и @param, если, как в примере, в конструкторе параметры и свойства имеют одинаковые имена.

/**
 * 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;
}
8
задан justtryingtomakealiving 25 June 2011 в 07:19
поделиться