Re: [Hibernate] Issues with the antlr parser

2005-03-17 Thread Tobias Järlund
cular* queries? Maybe you need to submit a test case to JIRA... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tobias Järlund Sent: Thursday, 17 March 2005 4:45 AM To: hibernate-devel@lists.sourceforge.net Subject: [Hibernate] Issues with the antlr parser 3.

Re: [Hibernate] Issues with the antlr parser

2005-03-17 Thread Christian Bauer
Tobias Järlund wrote: 2. From what I can tell the older syntax (from foo in class bar.Foo) is not supported. If this is by design, I think it would be a good idea to mention this in the upgrade notes, and update the documentation (it is still used in at least two places). Done -- Christian Bauer

[Hibernate] Issues with the antlr parser

2005-03-17 Thread Tobias Järlund
Hello! I'm having a few issues with the new antlr parser. 1. In the grammar, IDENT is restricted to ( 'a' .. 'z' | '_' ) ( 'a' .. 'z' | '0' .. '9' | '_' | '$' )*, which I believe is too limited. Since we are dealing with Java, this should be expanded to the full range of valid Java identifiers.