Re: Parsing Java with Instaparse

2016-11-04 Thread Alan Moore
Interop FTW! Alan -- 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 moderated - please be patient with your first post. To unsubscribe from this group,

Re: Parsing Java with Instaparse

2016-11-03 Thread Timothy Baldridge
;> >> On Thursday, November 3, 2016 at 8:29:32 AM UTC-5, Vitaly Peressada wrote: >>> >>> Hi All, >>> >>> Does anyone have experience with parsing java with instaparse? I want to >>> parse java REST services source, something like >>> >>&

Re: Parsing Java with Instaparse

2016-11-03 Thread Vitaly Peressada
than writing one. > > One easily findable example: > https://github.com/javaparser/javaparser > > > On Thursday, November 3, 2016 at 8:29:32 AM UTC-5, Vitaly Peressada wrote: >> >> Hi All, >> >> Does anyone have experience with parsing java with ins

Re: Parsing Java with Instaparse

2016-11-03 Thread Alex Miller
:29:32 AM UTC-5, Vitaly Peressada wrote: > > Hi All, > > Does anyone have experience with parsing java with instaparse? I want to > parse java REST services source, something like > > -- > import javax.ws.rs.Consumes; > impor

Parsing Java with Instaparse

2016-11-03 Thread Vitaly Peressada
Hi All, Does anyone have experience with parsing java with instaparse? I want to parse java REST services source, something like -- import javax.ws.rs.Consumes; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.Path; import