[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.modeling.tmf] Re: Removing left recursion...

Something else I've just noticed, where is your right hand operator?

E.g.
Query:
	  "true"
	| "(" terminalQuery+=TerminalQuery ")"
	| literal+=Literal
	;
TerminalQuery returns Query:
	Query ({Operation.left=current} op=("and" | "or") right=Query)*;