packages feed

antlr-haskell-0.1.0.2: README.md

# antlr-haskell
A Haskell implementation of ANTLR.

In implementing ANTLR we referenced the behavior of the original Java version
(ANTLR4):
[The definitive ANTLR4 Reference.](https://pragprog.com/book/tpantlr2/the-definitive-antlr-4-reference)
However we have taken much liberty in the design of this library compared to the
workflow of the original Java version. In particular in implementing ANTLR for
Haskell we have followed the following principles:

- Parsing backends should be interchangeable
  - GLR, LR, SLR, LL, ALL(\*)
- Code should be first class and declarative
  - The implementation of G4 is metacircular
  - Regular expressions are interpreted
- Implement algorithms from first principles
  - Set notation is used in implementing LL and LR algorithms.
  - Pure functional implementations of parsing algorithms can eventually support
    embedding of arbitrary (including IO) actions without breaking the predictive
    parsing abstraction.

More info can be found here:
[https://www.cronburg.com/2018/antlr-haskell-project/](https://www.cronburg.com/2018/antlr-haskell-project/)

## Build instructions

The library can be built with:

```bash
$ stack build # stack version 2.3.3
$ stack test :simple
```

Or with cabal (tested on 3.0.0.0) like so:

```bash
$ hpack
$ cabal update
$ cabal configure
$ cabal new-build
$ cabal test sexpression
...
Test suite sexpression: RUNNING...
Test suite sexpression: PASS
Test suite logged to:
/antlr-haskell/dist-newstyle/build/x86_64-linux/ghc-8.6.5/antlr-haskell-0.1.0.1/t/sexpression/test/antlr-haskell-0.1.0.1-sexpression.log
1 of 1 test suites (1 of 1 test cases) passed.
```

Here's a good one to run when making changes to the library, and you're unsure
of what may become affected by those changes:

```bash
stack test :simple :atn :ll :lr :sexpression :allstar :c
```

And then compare the results with that of this upstream branch. Some of the
GLR features (incremental and partial tokenization, notably) are still experimental,
and so there are known test cases which currently fail.

## Version History

- September 25th, 2020. Released version 0.1.0.1: bug fixes, documentation, and
  library versioning updates.