phaser: Incremental multiple pass parser library.

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

A combinator library for incremental multiple pass parsers. Mostly inspired by the Text.ParserCombinators.ReadP module in the Base package and the conduit package. It has similar capabilities to ReadP as well as more detailed error reporting and the capacity for multiple passes (such as lexing and parsing)


[Skip to Readme]

Properties

Versions 0.1.0.0, 0.1.0.0, 0.1.1.0, 0.2.0.0, 1.0.0.0, 1.0.0.1, 1.0.1.0
Change log None available
Dependencies base (>=4.9 && <4.10), bytestring (>=0.10 && <0.11), text (>=1.2 && <1.3) [details]
License BSD-3-Clause
Author Jeremy List
Maintainer quick.dudley@gmail.com
Category Text
Home page https://github.com/quickdudley/phaser
Source repo head: git clone https://github.com/quickdudley/phaser.git
Uploaded by quick_dudley at 2016-10-01T10:12:13Z

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for phaser-0.1.0.0

[back to package description]

phaser

A combinator library for incremental multiple pass parsers.

This library is inspired by the Text.ParserCombinators.ReadP module which is part of the base package of the Haskell platform, and also by the conduit library. Except for the munch family of functions and readS_to_p: most of the functionality of ReadP is possible (although fewer convenience functions are currently implemented as of version 0.1.0.0).

Parsers can also be chained à la conduit.

Finally: this library supports detailed error reporting including the position in the file where the parser failed.