Cabal-2.2.0.0: A framework for packaging Haskell software

Safe HaskellNone
LanguageHaskell2010

Distribution.Parsec.Common

Contents

Description

Module containing small types

Synopsis

Diagnostics

data PError Source #

Parser error.

Constructors

PError Position String 

Instances

Show PError Source # 
Generic PError Source # 

Associated Types

type Rep PError :: * -> * #

Methods

from :: PError -> Rep PError x #

to :: Rep PError x -> PError #

Binary PError Source # 

Methods

put :: PError -> Put #

get :: Get PError #

putList :: [PError] -> Put #

NFData PError Source # 

Methods

rnf :: PError -> () #

type Rep PError Source # 
type Rep PError = D1 * (MetaData "PError" "Distribution.Parsec.Common" "Cabal-2.2.0.0-LjrPiS3OoG894mMpepVd4F" False) (C1 * (MetaCons "PError" PrefixI False) ((:*:) * (S1 * (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 * Position)) (S1 * (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 * String))))

data PWarnType Source #

Type of parser warning. We do classify warnings.

Different application may decide not to show some, or have fatal behaviour on others

Constructors

PWTOther

Unclassified warning

PWTUTF

Invalid UTF encoding

PWTBoolCase

true or false, not True or False

PWTVersionTag

there are version with tags

PWTNewSyntax

New syntax used, but no cabal-version: >= 1.2 specified

PWTOldSyntax

Old syntax used, and cabal-version >= 1.2 specified

PWTDeprecatedField 
PWTInvalidSubsection 
PWTUnknownField 
PWTUnknownSection 
PWTTrailingFields 
PWTExtraMainIs

extra main-is field

PWTExtraTestModule

extra test-module field

PWTExtraBenchmarkModule

extra benchmark-module field

PWTLexNBSP 
PWTLexBOM 
PWTLexTab 
PWTQuirkyCabalFile

legacy cabal file that we know how to patch

PWTDoubleDash

Double dash token, most likely it's a mistake - it's not a comment

PWTMultipleSingularField

e.g. name or version should be specified only once.

PWTBuildTypeDefault

Workaround for derive-package having build-type: Default. See https://github.com/haskell/cabal/issues/5020.

PWTVersionLeadingZeros

See https://github.com/haskell-infra/hackage-trustees/issues/128

Instances

Bounded PWarnType Source # 
Enum PWarnType Source # 
Eq PWarnType Source # 
Ord PWarnType Source # 
Show PWarnType Source # 
Generic PWarnType Source # 

Associated Types

type Rep PWarnType :: * -> * #

Binary PWarnType Source # 
NFData PWarnType Source # 

Methods

rnf :: PWarnType -> () #

type Rep PWarnType Source # 
type Rep PWarnType = D1 * (MetaData "PWarnType" "Distribution.Parsec.Common" "Cabal-2.2.0.0-LjrPiS3OoG894mMpepVd4F" False) ((:+:) * ((:+:) * ((:+:) * ((:+:) * (C1 * (MetaCons "PWTOther" PrefixI False) (U1 *)) (C1 * (MetaCons "PWTUTF" PrefixI False) (U1 *))) ((:+:) * (C1 * (MetaCons "PWTBoolCase" PrefixI False) (U1 *)) ((:+:) * (C1 * (MetaCons "PWTVersionTag" PrefixI False) (U1 *)) (C1 * (MetaCons "PWTNewSyntax" PrefixI False) (U1 *))))) ((:+:) * ((:+:) * (C1 * (MetaCons "PWTOldSyntax" PrefixI False) (U1 *)) ((:+:) * (C1 * (MetaCons "PWTDeprecatedField" PrefixI False) (U1 *)) (C1 * (MetaCons "PWTInvalidSubsection" PrefixI False) (U1 *)))) ((:+:) * (C1 * (MetaCons "PWTUnknownField" PrefixI False) (U1 *)) ((:+:) * (C1 * (MetaCons "PWTUnknownSection" PrefixI False) (U1 *)) (C1 * (MetaCons "PWTTrailingFields" PrefixI False) (U1 *)))))) ((:+:) * ((:+:) * ((:+:) * (C1 * (MetaCons "PWTExtraMainIs" PrefixI False) (U1 *)) (C1 * (MetaCons "PWTExtraTestModule" PrefixI False) (U1 *))) ((:+:) * (C1 * (MetaCons "PWTExtraBenchmarkModule" PrefixI False) (U1 *)) ((:+:) * (C1 * (MetaCons "PWTLexNBSP" PrefixI False) (U1 *)) (C1 * (MetaCons "PWTLexBOM" PrefixI False) (U1 *))))) ((:+:) * ((:+:) * (C1 * (MetaCons "PWTLexTab" PrefixI False) (U1 *)) ((:+:) * (C1 * (MetaCons "PWTQuirkyCabalFile" PrefixI False) (U1 *)) (C1 * (MetaCons "PWTDoubleDash" PrefixI False) (U1 *)))) ((:+:) * (C1 * (MetaCons "PWTMultipleSingularField" PrefixI False) (U1 *)) ((:+:) * (C1 * (MetaCons "PWTBuildTypeDefault" PrefixI False) (U1 *)) (C1 * (MetaCons "PWTVersionLeadingZeros" PrefixI False) (U1 *)))))))

Position

data Position Source #

1-indexed row and column positions in a file.

Constructors

Position !Int !Int 

incPos :: Int -> Position -> Position Source #

Shift position by n columns to the right.

retPos :: Position -> Position Source #

Shift position to beginning of next row.