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
Try to detect if the current doc comment is the comment of a function declaration/definition and sort all @param tags by the order of the referred to parameters in the function.
Example
Before:
/** * @param c * @param b * @param a */functionname(a,b,c){}
Before:
/** * @param a * @param b * @param c */functionname(a,b,c){}
The text was updated successfully, but these errors were encountered:
Try to detect if the current doc comment is the comment of a function declaration/definition and sort all
@param
tags by the order of the referred to parameters in the function.Example
Before:
Before:
The text was updated successfully, but these errors were encountered: