Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. ParseOk :: ParseState -> a -> ParseResult a

    Agda Agda.Syntax.Parser.Monad

    No documentation available.

  2. data ParseResult a

    Agda Agda.Syntax.Parser.Monad

    The result of parsing something.

  3. data ParseState

    Agda Agda.Syntax.Parser.Monad

    The parser state. Contains everything the parser and the lexer could ever need.

  4. data ParseWarning

    Agda Agda.Syntax.Parser.Monad

    Warnings for parsing.

  5. data Parser a

    Agda Agda.Syntax.Parser.Monad

    The parse monad.

  6. module Agda.Syntax.Parser.Parser

    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.) -

  7. module Agda.Syntax.Position

    Position information for syntax. Crucial for giving good error messages.

  8. Pn :: a -> Word32 -> Word32 -> Word32 -> Position' a

    Agda Agda.Syntax.Position

    No documentation available.

  9. type Position = Position' SrcFile

    Agda Agda.Syntax.Position

    No documentation available.

  10. data Position' a

    Agda Agda.Syntax.Position

    Represents a point in the input. If two positions have the same srcFile and posPos components, then the final two components should be the same as well, but since this can be hard to enforce the program should not rely too much on the last two components; they are mainly there to improve error messages for the user. Note the invariant which positions have to satisfy: positionInvariant.

Page 1131 of many | Previous | Next