google / bamboo-soy

An intellij plugin supporting Closure Template language (Soy)
Apache License 2.0
48 stars 27 forks source link

Documentation tooltip should support leading doc comments for parameters #20

Closed thso closed 7 years ago

thso commented 7 years ago

Currently only this is picked up

{template .render}
  {@param a: number} /** Something cool. */
{/template}

but we should consider leading doc comments as valid too

{template .render}
  /** Something cool. */
  {@param a: number} 
{/template}