Created
April 11, 2013 02:49
-
-
Save shibukawa/5360259 to your computer and use it in GitHub Desktop.
Error case of JSDoc 3. It can't create link from @param type sections to external nested names.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @external ExternalModule | |
*/ | |
/** | |
* @external ExternalModule.ExternalClass | |
*/ | |
/** | |
* Test function. | |
* @param {external:ExternalModule.ExternalClass} param Parameter. | |
*/ | |
function convert(param) | |
{ | |
return; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment