| | 1 | This is basically a stand alone parser, I don't know if it will go |
| | 2 | anywhere, but it's here for now. |
| | 3 | |
| | 4 | Mark Mandel contributed an ANTLR parser, which is pretty much in |
| | 5 | org.cfml.parser, and org.cfml.parser.antlr. |
| | 6 | |
| | 7 | I created a blank javaCC parser, in case someone with knowledge of |
| | 8 | javaCC would like to take a go at creating a CFML parser. It is |
| | 9 | located in org.cfml.parser.javacc. |
| | 10 | |
| | 11 | There is a little test file, called testinput.java, within the |
| | 12 | org.cfml.parser.antlr package-- you can run it to see the ANTRL |
| | 13 | parser in action, sorta. |
| | 14 | |
| | 15 | This is a very nice GUI IDE for ANTLR: |
| | 16 | |
| | 17 | http://www.antlr.org/works/index.html |
| | 18 | |
| | 19 | There's some example CFML to use for testing the parser in |
| | 20 | org.cfml.parser.antlr/testinput.txt |