Safe Haskell | None |
---|---|
Language | Haskell2010 |
Parsers for PIR terms in DefaultUni.
Synopsis
- parse :: Parser a -> String -> Text -> Either ( ParseErrorBundle Text ParseError ) a
- parseQuoted :: Parser a -> String -> Text -> Quote ( Either ( ParseErrorBundle Text ParseError ) a)
- program :: Parser ( Program TyName Name DefaultUni DefaultFun SourcePos )
- pType :: Parser PType
- pTerm :: Parser PTerm
- type Parser = ParsecT ParseError Text ( StateT ParserState Quote )
- data SourcePos
Documentation
parse :: Parser a -> String -> Text -> Either ( ParseErrorBundle Text ParseError ) a Source #
parseQuoted :: Parser a -> String -> Text -> Quote ( Either ( ParseErrorBundle Text ParseError ) a) Source #
The data type
SourcePos
represents source positions. It contains the
name of the source file, a line number, and a column number. Source line
and column positions change intensively during parsing, so we need to
make them strict to avoid memory leaks.
Instances
Eq SourcePos | |
Data SourcePos | |
Defined in Text.Megaparsec.Pos gfoldl :: ( forall d b. Data d => c (d -> b) -> d -> c b) -> ( forall g. g -> c g) -> SourcePos -> c SourcePos Source # gunfold :: ( forall b r. Data b => c (b -> r) -> c r) -> ( forall r. r -> c r) -> Constr -> c SourcePos Source # toConstr :: SourcePos -> Constr Source # dataTypeOf :: SourcePos -> DataType Source # dataCast1 :: Typeable t => ( forall d. Data d => c (t d)) -> Maybe (c SourcePos ) Source # dataCast2 :: Typeable t => ( forall d e. ( Data d, Data e) => c (t d e)) -> Maybe (c SourcePos ) Source # gmapT :: ( forall b. Data b => b -> b) -> SourcePos -> SourcePos Source # gmapQl :: (r -> r' -> r) -> r -> ( forall d. Data d => d -> r') -> SourcePos -> r Source # gmapQr :: forall r r'. (r' -> r -> r) -> r -> ( forall d. Data d => d -> r') -> SourcePos -> r Source # gmapQ :: ( forall d. Data d => d -> u) -> SourcePos -> [u] Source # gmapQi :: Int -> ( forall d. Data d => d -> u) -> SourcePos -> u Source # gmapM :: Monad m => ( forall d. Data d => d -> m d) -> SourcePos -> m SourcePos Source # gmapMp :: MonadPlus m => ( forall d. Data d => d -> m d) -> SourcePos -> m SourcePos Source # gmapMo :: MonadPlus m => ( forall d. Data d => d -> m d) -> SourcePos -> m SourcePos Source # |
|
Ord SourcePos | |
Defined in Text.Megaparsec.Pos |
|
Read SourcePos | |
Show SourcePos | |
Generic SourcePos | |
NFData SourcePos | |
Defined in Text.Megaparsec.Pos |
|
Pretty SourcePos Source # | |
type Rep SourcePos | |
Defined in Text.Megaparsec.Pos
type
Rep
SourcePos
=
D1
('
MetaData
"SourcePos" "Text.Megaparsec.Pos" "megaparsec-9.2.1-EI4cRL0SAfYAOxBOfPeCV9" '
False
) (
C1
('
MetaCons
"SourcePos" '
PrefixI
'
True
) (
S1
('
MetaSel
('
Just
"sourceName") '
NoSourceUnpackedness
'
NoSourceStrictness
'
DecidedLazy
) (
Rec0
FilePath
)
:*:
(
S1
('
MetaSel
('
Just
"sourceLine") '
NoSourceUnpackedness
'
SourceStrict
'
DecidedUnpack
) (
Rec0
Pos
)
:*:
S1
('
MetaSel
('
Just
"sourceColumn") '
NoSourceUnpackedness
'
SourceStrict
'
DecidedUnpack
) (
Rec0
Pos
))))
|