Does anyone know of a JSDoc tool that is - a) Good b) Understands the following way of declaring a function var temp = function() {} I found JSDoc to be very cool and I had all my code commented that way till I figured out that it doesn''t work with the above syntax. /** * @author Foo */ function temp() { } WORKS BUT /** *@author Foo */ var temp = function() { } DOES NOT WORK. Thoughts? Thanks, Mandy.