->
###* @type {string} ###
a = 'hello'
b = 'toodles'
WARNING - declaration of multiple variables with shared type information
var a, b;
This only happens with the changes I made and only when it is at the top of the scope/function body. A quick workaround is to place {} before the first jsdoc comment if you need to add type info to the first var declared.