Go to file
Sam Harwell 2920ad0d1a * Updated documentation for IntSet
* Reimplemented IntervalSet.subtract and IntervalSet.complement to operate over the complete range of supported values
* Expanded several methods in IntervalSet to operate on any IntSet
* Mark COMPLETE_CHAR_SET and EMPTY_SET as read-only
2014-06-16 14:23:52 -05:00
antlr4-maven-plugin [maven-release-plugin] prepare for next development iteration 2014-04-06 21:19:40 -05:00
runtime * Updated documentation for IntSet 2014-06-16 14:23:52 -05:00
tool * Updated documentation for IntSet 2014-06-16 14:23:52 -05:00
.gitignore Git hygiene 2014-05-21 00:19:35 +08:00
CHANGES.txt Update CHANGES.txt 2014-03-25 09:20:41 -07:00
LICENSE.txt update README, date on license. 2013-01-01 13:43:15 -08:00
README.md I have removed all of the installation and getting started stuff from the readme and pointed them to the wiki which is easier to update. 2014-06-10 12:57:39 -07:00
build.xml set ant build for 4.3 using 4.2.2 (and 3.5.2) 2014-06-10 13:03:46 -07:00
contributors.txt add eric to contributors 2014-06-07 22:58:27 +08:00
pom.xml [maven-release-plugin] prepare for next development iteration 2014-04-06 21:19:40 -05:00

README.md

ANTLR v4

ANTLR (ANother Tool for Language Recognition) is a powerful parser generator for reading, processing, executing, or translating structured text or binary files. It's widely used to build languages, tools, and frameworks. From a grammar, ANTLR generates a parser that can build parse trees and also generates a listener interface (or visitor) that makes it easy to respond to the recognition of phrases of interest.

Release notes

For installation and other getting started information, see Getting started with v4.

The Definitive ANTLR 4 Reference

You can buy a book The Definitive ANTLR 4 Reference

Programmers run into parsing problems all the time. Whether its a data format like JSON, a network protocol like SMTP, a server configuration file for Apache, a PostScript/PDF file, or a simple spreadsheet macro language—ANTLR v4 and this book will demystify the process. ANTLR v4 has been rewritten from scratch to make it easier than ever to build parsers and the language applications built on top. This completely rewritten new edition of the bestselling Definitive ANTLR Reference shows you how to take advantage of these new features.

Book source code

Additional grammars

This repository is a collection of grammars without actions where the root directory name is the all-lowercase name of the language parsed by the grammar. For example, java, cpp, csharp, c, etc...

Authors

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

Sam Harwell