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

/**
[EMAIL PROTECTED] Foo
*/

var temp = function() {
}

DOES NOT WORK.

Thoughts?

Thanks,
Mandy.
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

Reply via email to