You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MyClass=Class.create({/** * Description of constructor. * @class Description of class. * @constructs */initialize: function(arg0,arg1){},});
As discuss on #782 you can simply do something like
classMyClass###* Description of constructor.@class Description of class.@constructs###constructor: (arg0, arg1)->
Looks good...
But when I thought about it, for production code you might not want your inline documentation to show... CoffeeScript has no way of supporting unbuffered multi-line comments.
How about /* ... */ for unbuffered multi-line comments?
Okay so JSDoc syntax is awesome.
As discuss on #782 you can simply do something like
Looks good...
But when I thought about it, for production code you might not want your inline documentation to show... CoffeeScript has no way of supporting unbuffered multi-line comments.
How about
/* ... */
for unbuffered multi-line comments?There's
related: #1350, #1925
The text was updated successfully, but these errors were encountered: