I know about using a -vsdoc.js file for intellisense, and the one for JQuery is easy to find. What other javascript / AJAX / DHTML libraries have them and where can I find those files? Also, is there a document which outlines the specifications for -vsdoc.js files?
|
2
|
|
|
|
|
|
Excellent blog posting from Betrand LeRoy on intellisense format for javascript: http://weblogs.asp.net/bleroy/archive/2007/04/23/the-format-for-javascript-doc-comments.aspx In a nutshell: Summary - used to describe a function/method or event. Syntax:
Parameter - describe a parameter to a function/method. Syntax:
The param tag is used to describe the parameters of a method or constructor. The param tags should be in the same order as the method or constructor's parameters and have the same names. Function return type - syntax:
Value type - describes a property (shouldnt use 'summary' for a prop) - syntax:
Field - used to describe a field in a javascript class - syntax:
How to include intellisense for an external javascript file, the following syntax as the first line(s) in a javascript file:
|
|||
|
|
|
|
You can find Intellisense for MooTools here: http://code.google.com/p/mootoolsintellisense/downloads/list |
||
|
|
