🎁 Added
- Adds the
--quiet
command line argument. This suppresses all warning logs and outputs only errors. It's the opposite of --verbose
, which takes precedence over it.
- Add support for object pattern parameters. This means you can document functions that look as follows:
/**
* Calculates the distance between the points "a", "b".
*
* @param {number} .a.x - A's x-coordinate
* @param {number} .a.y - A's y-coordinate
* @param {number} .b.x - B's x-coordinate
* @param {number} .b.y - B's y-coordinate
*/
function distance({ a: { x: x0, y: y0 }, b: { x: x1, y: y1 }) {
}
🐛 Fixed
- Added source code location for some parser errors