In the case of Cesium.js, I've been encountering cases where <anonymous> is being treated as a module. It looks and sounds like an alias for something that should be put in the global module namespace, but I've yet to find confirmation that this is the case.
So in the case that this is not a special identifier emitted by JSDoc, our intention is to put anything under <anonymous> into the global namespace anyway for Cesium.js, so the plugin should have a means of treating <anonymous> or any other module name as being global.
In the case of Cesium.js, I've been encountering cases where
<anonymous>
is being treated as a module. It looks and sounds like an alias for something that should be put in the global module namespace, but I've yet to find confirmation that this is the case.So in the case that this is not a special identifier emitted by JSDoc, our intention is to put anything under
<anonymous>
into the global namespace anyway for Cesium.js, so the plugin should have a means of treating<anonymous>
or any other module name as being global.