[Jsdoc-user] generation not done when adding particular methods to .js-source file
Status: Inactive
Brought to you by:
mmathews
From: Eefje C. <Eef...@ar...> - 2007-05-14 10:21:16
|
Hi, =20 I'm using JSDoc (and ActivePerl) on Windows XP and so far generating my API didn't give any problems. =20 In my batch-file I specify a lot of folders (+/- 20 folders) with .js-source files. When adding one specific folder , the documents aren't generated anymore.=20 I've checked several things and when I exclude some methods from my .js-source file in that folder, the documents are generated again. But I don't see the problem... (nor solution) =20 For example. When I add this in my javascript, no generation is done : /** * open the monthly calendar * @method open * @type void */=20 this.open =3D function(){ this.isOn =3D true; $(this.getTargetDiv()).style.display =3D "block"; } if I remove it.... the generation is done . To give you an idea... this source file contains +/- 1900 lines of code... and this little block of code stops the generation... =20 |