Thanks for the faster slimmed grammar. For our grammar we need hierarchy for operator precedence in the final version. e. g.: c1&c2|c3&c4 => (c1&c2)|(c3&c4)
So we have to nest the and in the or e. g.: and = unary (<'&'> unary)* or = and(<'|'> and)* As soon as we implement the hierarchy in the grammar, the parsing is significantly slower. -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
