Today edit the parser code to make comment identified as a description for a variable. I was able to make it working but rest of the day mainly went in solving the shift-reduce conflict.
I tried to understand how different grammar rules are connected in the parser and make rules to define rest of the code.
At present syntax supported is -:
@Description("description_text") @Parameter(parameters) variable=value;
but now syntax will be:
//Description_text varaiable=value; // parameters
At present,I able to make description_text in new syntax to go into the annotation.