-
Notifications
You must be signed in to change notification settings - Fork 194
Open
Description
I’d expect the output of these things to be equivalent – just as jsDoc understands it.
/**
* @param {String} [a='b']
* description
*//**
* @param {String}
* [a='b']
* description
*/But we get funny results (I’ve only left things that differ):
[{"tags": [
{
"type": "param",
"string": "{String} [a='b']\n description",
"name": "[a='b']",
"description": " description",
"optional": true
}
]}][{"tags": [
{
"type": "param",
"string": "{String}\n [a='b']\n description",
"name": " [a='b']\n description",
"description": "",
"optional": false
}
]}]Metadata
Metadata
Assignees
Labels
No labels