Community
Participate
Working Groups
Build Identifier: If I'll write this: /** @type Object */ var obj = null; /** @type Element */ var elem = null; ...everything works fine. But if I merge variable declaration like this: /** @type Object */ var obj = null, /** @type Element */ elem = null; ...the "elem" variable type is recognized as "any" (i.e. JSDoc doesn't work here) Reproducible: Always