invertible-syntax-poly-0.1.0.1: Extends invertible-syntax library capable to use parameterized token type.

Copyright2012 Kei Hibino
LicenseBSD3
Maintainerex8k.hibino@gmail.com
Stabilityexperimental
Portabilityunknown
Safe HaskellNone
LanguageHaskell98

Text.Syntax.Parser.List.Type

Contents

Description

This module includes type synonyms for naive parsers.

Synopsis

Type to store error state

type ErrorStack = [ErrorString] Source

Type to store error state

Types to run invertible syntax definitions as parsers

type RunAsParser tok a e = RunAsParser tok [tok] a e Source

Type to run invertible syntax definitions as parsers

type RunAsStringParser a e = RunAsParser Char a e Source

Case of RunAsParser when token is Char type