|
From: <hib...@li...> - 2006-06-30 06:08:12
|
Author: ste...@jb...
Date: 2006-06-30 02:07:52 -0400 (Fri, 30 Jun 2006)
New Revision: 10072
Modified:
branches/HQL_ANTLR_2/Hibernate3/build.xml
Log:
redid parse phase and simplified portions of resolve phase
Modified: branches/HQL_ANTLR_2/Hibernate3/build.xml
===================================================================
--- branches/HQL_ANTLR_2/Hibernate3/build.xml 2006-06-30 05:59:31 UTC (rev 10071)
+++ branches/HQL_ANTLR_2/Hibernate3/build.xml 2006-06-30 06:07:52 UTC (rev 10072)
@@ -194,7 +194,13 @@
target="${grammar.dir}/sql-gen.g"
outputdirectory="${parser.src}"
/>
- <touch file="${parser.src}/.antlr_run"/>
+
+ <!-- The HQL parsing grammar -->
+ <antlrtask target="g2/parse.g" outputdirectory="${parser.src}" />
+ <!-- The HQL resolver grammar -->
+ <antlrtask target="g2/resolve.g" outputdirectory="${parser.src}" />
+
+ <touch file="${parser.src}/.antlr_run"/>
</target>
<target name="cleanantlr" depends="init"
|