Uncaught `param` syntax error
Closed this issue · 1 comments
gyandeeps commented
When I try to use the library to parse this syntax it doesn't thow any error:
/**
* @param fields [Array]
*/
function crashIt() {
return "";
}
But for the below syntax it does throw an syntax error:
/**
* @returns fields [Array]
*/
function crashIt() {
return "";
}
Is the top @param
syntax correct?