uu-cco-uu-parsinglib-0.1.0.1: Utilities for compiler construction: Feedback wrapper around parser in uu-parsinglib

Portabilityportable
Stabilityprovisional
Maintainerstefan@cs.uu.nl
Safe HaskellNone

CCO.Parsing.UUParsingLib

Contents

Description

Utility for executing Parsers from the uu-parsinglib package within the Feedback monad.

This module can be regarded a satellite to the utility library accompanying the course on Compiler Construction (INFOMCCO) at Utrecht University.

Synopsis

Executing parsers within the Feedback monad

parseFeedbackSource

Arguments

:: ListLike [s] Char 
=> Parser a

the parser to use

-> [s]

the input

-> Feedback a

return result in Feedback

Executes a Parser within the Feedback monad.