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
I tried it on your own main.js and it only shows me your no function found alert
functiongenerateComment(fname,params,returnsValue,prefix){varoutput=[];output.push("/**");// Assume function is private if it starts with an underscoreif(fname.charAt(0)==="_"){output.push(" * @private");}// Add descriptionoutput.push(" * Description");// Add parametersif(params.length>0){vari;for(i=0;i<params.length;i++){varparam=params[i];output.push(" * @param {type} "+param+" Description");}}if(returnsValue)output.push(" * @returns {type} Description");// TODO use if 'return' is found in the function body?//output += " * @return {type} ???\n";output.push(" */");returnprefix+output.join("\n"+prefix)+"\n";}
The text was updated successfully, but these errors were encountered:
I tried it on your own
main.js
and it only shows me yourno function found
alertThe text was updated successfully, but these errors were encountered: