[Jsdoc-user] Private members without default values don't work?
Status: Inactive
Brought to you by:
mmathews
|
From: Al V. <al....@gm...> - 2006-09-12 18:17:27
|
I've got a constructor that looks like:
function C()
{
var x;
var y;
this.accessorY = function() { return y;}
}
When I run jsdoc against this file, x and y don't show up, but if I
change the lines from:
var x;
to:
var x = 1;
then jsdoc picks it up. Anyone have any insight into this? What file
might I patch to fix this?
--Al Vazquez
|