Agda-2.4.2.5: A dependently typed functional programming language and proof assistant

Safe HaskellNone
LanguageHaskell98

Agda.Syntax.Parser.Parser

Description

The parser is generated by Happy (http://www.haskell.org/happy). - - Ideally, ranges should be as precise as possible, to get messages that - emphasize precisely the faulting term(s) upon error. - - However, interactive highlighting is only applied at the end of each - mutual block, keywords are only highlighted once (see - Decl). So if the ranges of two declarations - interleave, one must ensure that keyword ranges are not included in - the intersection. (Otherwise they are uncolored by the interactive - highlighting.) -

Synopsis

Documentation

moduleParser :: Parser Module Source

Parse a module.

exprParser :: Parser Expr Source

Parse an expression. Could be used in interactions.

tokensParser :: Parser [Token] Source

Parse the token stream. Used by the TeX compiler.

tests :: IO Bool Source

Test suite.