up vote 6 down vote favorite
2
share [g+] share [fb]

I'm used to atlas where the preferred (from what I know) method is to use xml comments such as:

/// <summary>
///   Method to calculate distance between two points
/// </summary>
///
/// <param name="pointA">First point</param>
/// <param name="pointB">Second point</param>
/// 
function calculatePointDistance(pointA, pointB) { ... }

Recently I've been looking into other 3rd party javascript libraries and I see syntax like:

/*
 * some comment here
 * another comment here
 * ...
 */
 function blahblah() { ... }

As a bonus, please let me know if there are any API generators for JavaScript that could read the 'preferred' commenting style.

link|improve this question

62% accept rate
feedback

4 Answers

up vote 11 down vote accepted

Written in Perl, there's JSDoc

/**
 * Shape is an abstract base class. It is defined simply
 * to have something to inherit from for geometric 
 * subclasses
 * @constructor
 */
function Shape(color){
 this.color = color;
}

There's also a Java version, called the JSDoc Toolkit

link|improve this answer
This is exactly what I needed, thanks for the link! – EvilSyn Sep 24 '08 at 13:31
feedback

Try pasting the following into a javascript file in Visual Studio 08 and play around with it:

var Namespace = {};
    Namespace.AnotherNamespace = {};

Namespace.AnotherNamespace.annoyingAlert = function(_message)
{
    /// <param name="_message">The message you want alerted two times</param>
    /// <summary>This is really annoying!!</summary>

    alert(_message);
    alert(_message);
};

Intellisense galore!

More info about this (including how to reference external javascript-files, for use in large libraries) can be found on Scott Gu's blog.

link|improve this answer
feedback

Yahoo just released YUIDoc.

It's well documented, supported by Yahoo, and written in Python. It also uses a lot of the same syntax, so not many changes would have to be made to go from one to the other.

link|improve this answer
feedback

The use of the triple comment in the first example is actually used for external XML documentation tools and (in Visual Studio) intellisense support. Its still a valid comment, but its special :) The actuall comment 'operator' is // The only limitation there is that its for a single line.

The second example uses C style block commenting which allows for commenting across multiple lines or in the middle of a line.

link|improve this answer
Righto - and I recently read that its being phased out (at least for JS support) so that's why I was asking the question. Thanks! – EvilSyn Sep 24 '08 at 13:28
Silly me, completely misread your question. If only I could -1 myself :P – Jim Burger Sep 24 '08 at 13:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.