Re: Creating parsers in clojure

2012-02-03 Thread Roman Perepelitsa
2012/2/3 Anna > I'm new to clojure and I'm looking for code examples for building > parsers in clojure on the fly using a grammar. I'm supposed to write a > little SQL parser to experience with sql parse tree normalization's. > Any recommendations? Check out this recent thread: https://groups.g

Re: Creating parsers in clojure

2012-02-03 Thread Chris Perkins
There is an example of parser for a very small subset of SQL in one of the unit tests for imparsonate, here: https://github.com/grammati/imparsonate/blob/master/test/imparsonate/test/core.clj - Chris -- You received this message because you are subscribed to the Google Groups "Clojure" group

Re: Creating parsers in clojure

2012-02-03 Thread Meikel Brandmeyer (kotarak)
Hi, Christophe Grand's parsley is another option: http://github.com/cgrand/parsley Sincerely Meikel -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are m

Re: Creating parsers in clojure

2012-02-03 Thread Richard Lyman
The little information you've provided leaves the field pretty open... ... but when I'm 'toying' around with ASTs I like Amotoen ('course I'm probably biased. ;-)). https://github.com/richard-lyman/amotoen -Rich On Fri, Feb 3, 2012 at 6:21 AM, Anna wrote: > I'm new to clojure and I'm looking

Creating parsers in clojure

2012-02-03 Thread Anna
I'm new to clojure and I'm looking for code examples for building parsers in clojure on the fly using a grammar. I'm supposed to write a little SQL parser to experience with sql parse tree normalization's. Any recommendations? -- You received this message because you are subscribed to the Google