I'm using Xtext and I am getting a weird behavior regarding the definitions of variables in my DSL. I use my DSL to define an input model, manipulate it and then serialize it as an output model.
My manipulation does not affect the variable declarations in any way, but I get some non-deterministic behavior. For example when my input is:
variables : {v, k}
Some times the output is identical (which is good) but some times it will produce:
variables : {v}
variables : {k}
The relevant fragment of my grammar is:
Problem:
.....
('variables'':''{'
varDecl +=VariableDeclaration (',' varDecl +=VariableDeclaration)* '}'
)? &
.....
;
VariableDeclaration:
name =ID
;
Any ideas why I'm getting that behavior and/or how to fix it?
varDeclshouldn't be there, right? – Bart Kiers Mar 2 '12 at 7:54