for example, the following method
test(value) {
return false
}
enter / * * enter above test, and comments will be generated automatically, as follows
/**
* @params value
* @return {boolean}
*/
test(value) {
return false
}
but sometimes, if you hit enter / * *, you will find that there is no way to comment, just wrap the line, as follows:
/**
*
test(value) {
return false
}
Why is it impossible to generate comments sometimes? did you press any keys?