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
Add a feature that generates a JS doc outline for an existing function
functiontest(a,b){returna*b;}
Should generate:
/** * @returns {number} {description} * @param {number} a - {description} * @param {number b - {description} */
The result should use Ace's snippets feature (generate a dynamic snippet example). Each {description} placeholder is part of the snippet. Use tern to infer type, and if type cant be inferred then make type part of the snippet;
There is already an existing extension for Brackets that does something like this, so check it out first.
The text was updated successfully, but these errors were encountered:
Add a feature that generates a JS doc outline for an existing function
Should generate:
The result should use Ace's snippets feature (generate a dynamic snippet example). Each
{description}
placeholder is part of the snippet. Use tern to infer type, and if type cant be inferred then make type part of the snippet;There is already an existing extension for Brackets that does something like this, so check it out first.
The text was updated successfully, but these errors were encountered: