Hello How do I annotate local variables in a multi declaration?
@MyTag def (var1, var2) = ["", ""] --> this works and I am able to see the annotations in my AST def (@MyTag var1, @MyOtherTag var2) = ["", ""] --> This does not work. In the second declaration model, The IDE calls out an error, the compiler is silent with no errors and the AST does not show any annotations as part of the declarationExpression. What is the right way to annotate variables that are part of a multi declaration expression statement? regards Saravanan