Go to file
Sam Harwell 886baaf773 Use separate lists in the serialized ATN for non-greedy states (cleaner, allows ATNs with twice as many states), resolves antlr/antlr4#96 2012-12-06 13:07:11 -06:00
antlr4-maven-plugin Rename master artifact to antlr4-master 2012-12-04 12:57:56 -06:00
runtime/Java Use separate lists in the serialized ATN for non-greedy states (cleaner, allows ATNs with twice as many states), resolves antlr/antlr4#96 2012-12-06 13:07:11 -06:00
tool Use separate lists in the serialized ATN for non-greedy states (cleaner, allows ATNs with twice as many states), resolves antlr/antlr4#96 2012-12-06 13:07:11 -06:00
.gitignore Updated .gitignore 2012-11-30 12:40:24 -06:00
CHANGES.txt Create a ParseTreeVisitor interface, rename current abstract base class to AbstractParseTreeVisitor 2012-12-02 17:57:28 -06:00
LICENSE.txt Added some documentation, change the version number on v3 lib. Added Sam to the license. 2012-09-18 11:25:06 -07:00
README.txt reset in prep for 4.0 release 2012-12-02 13:00:04 -08:00
build.properties change version 2012-11-11 10:41:04 -08:00
build.xml tweak for 4.0b2 version num. 2012-09-29 12:53:44 -07:00
contributors.txt Signed CLA 2012-11-23 10:55:21 -08:00
pom.xml Fix bootstrap classpath references 2012-12-04 12:58:25 -06:00

README.txt

ANTLR v4

Terence Parr, parrt at cs usfca edu
ANTLR project lead and supreme dictator for life
University of San Francisco

INTRODUCTION

Hi and welcome to the Honey Badger 4.0 release of ANTLR!

INSTALLATION

$ cd /usr/local/lib
$ curl -O --silent http://www.antlr.org/download/antlr-4.0-complete.jar

Or just download from http://www.antlr.org/download/antlr-4.0-complete.jar
and put it somewhere rational for your operating system.

You can either add to your CLASSPATH:

$ export CLASSPATH=".:/usr/local/lib/antlr-4.0-complete.jar:$CLASSPATH"

and launch org.antlr.v4.Tool directly:

$ java org.antlr.v4.Tool
ANTLR Parser Generator Version 4.0
    -o ___              specify output directory where all output is generated
    -lib ___            specify location of .tokens files
...

or use -jar option on java:

$ java -jar /usr/local/lib/antlr-4.0-complete.jar
ANTLR Parser Generator Version 4.0
    -o ___              specify output directory where all output is generated
    -lib ___            specify location of .tokens files
...

You can make a script, /usr/local/bin/antlr4:

#!/bin/sh
java -cp "/usr/local/lib/antlr4-complete.jar:$CLASSPATH" org.antlr.v4.Tool $*

On Windows, you can do something like this (assuming you put the
jar in C:\libraries) for antlr4.bat:

java -cp C:\libraries\antlr-4.0-complete.jar;%CLASSPATH% org.antlr.v4.Tool %*

You can also use an alias

$ alias antlr4='java -jar /usr/local/lib/antlr-4.0-complete.jar'

Either way, say just antlr4 to run ANTLR now.

The TestRig class is very useful for testing your grammars:

$ alias grun='java org.antlr.v4.runtime.misc.TestRig'

EXAMPLE

In /tmp/Hello.g4, paste this:

// Define a grammar called Hello
// match keyword hello followed by an identifier
// match lower-case identifiers
grammar Hello;
r : 'hello' ID ;
ID : [a-z]+ ;
WS : [ \t\n]+ -> skip ; // skip spaces, tabs, newlines

Then run ANTLR the tool on it:

$ cd /tmp
$ antlr4 Hello.g4
$ javac Hello*.java

Now test it:

$ grun Hello r -tree
hello parrt
^D
(r hello parrt)

(That ^D means EOF on unix; it's ^Z in Windows.) The -tree option prints
the parse tree in LISP notation.

BOOK SOURCE CODE

http://pragprog.com/titles/tpantlr2/source_code