-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix jsDoc to allow @exception tag on ECMAScript 5 properties... #832
Comments
@shunter is this fixed after the JSDoc upgrade? |
No. |
I think so. I don't think we can fix it externally. |
Does anyone know if this is still an issue? |
Upgrading to the latest JSDoc should fix this, #1859 (comment) For a test case, check http://cesiumjs.org/releases/1.34/Build/Documentation/Model.html?classFilter=Model#boundingSphere |
Can this issue be closed? I can reconfirm @bampakoa's comment on #1859 that the problem is no longer present; I generated a test doc page using JSDoc 3.6.11 (the version my NPM resolved to from the version requirements of the package.json in the |
Yes, I can confirm the issue is fixed prior to the minimum version of jsdoc in Thanks @andynines! |
Documenting an exception on an ES5 property changes the property type to the exception type. In the below example,
aValue
shows up in the generated doc as typeDeveloperError
, instead of typeElement
. Removing the exception doc makes the problem go away.The text was updated successfully, but these errors were encountered: