Hi Antonio, unfortunately there is no way to add summary information to you JScript functions if they are within a Script Unit.
The only case where it can be done is if the functions appear in a
Script Extension. via the Description.xml file.
This unfortuately has the drawback in that Script Extensions cannot access external code via //USEUNIT, they are required to be completely self contained.
If your functions belong to a user defined object, e.g. myFunction() in the following module MyModule
var MyModule(function(){
return {
myFunction: function() {
return 123;
}
};
})();
then there is no way to get the function myFunction() to appear in the intellisense at all.
Regards,
Phil Baird