
Hi there,
Not sure if this has been asked before but regarding WPF SyntaxEditor grammar, what would the best technique be to allow terminals/nonterminals be in random order for a production?
E.g. projecting something like the following 3 productions as a single production:
Production1 = @term1 + @term2 + @term3 + _nonterm;
Production2 = @term1 + @term3 + _nonterm + @term2;
Production3 = @term1 + _nonterm + @term2 + @term3;
Kind regards,
Gareth