haskell-src-exts-1.23.1: Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer
Copyright (c) Niklas Broberg 2009
License BSD-style (see the file LICENSE.txt)
Maintainer Niklas Broberg, d00nibro@chalmers.se
Stability stable
Portability portable
Safe Haskell Safe-Inferred
Language Haskell98

Language.Haskell.Exts.Fixity

Description

Fixity information to give the parser so that infix operators can be parsed properly.

Synopsis

Fixity representation

data Fixity Source #

Operator fixities are represented by their associativity (left, right or none) and their precedence (0-9).

Constructors

Fixity ( Assoc ()) Int ( QName ())

Instances

Instances details
Eq Fixity Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

Data Fixity Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

Methods

gfoldl :: ( forall d b. Data d => c (d -> b) -> d -> c b) -> ( forall g. g -> c g) -> Fixity -> c Fixity Source #

gunfold :: ( forall b r. Data b => c (b -> r) -> c r) -> ( forall r. r -> c r) -> Constr -> c Fixity Source #

toConstr :: Fixity -> Constr Source #

dataTypeOf :: Fixity -> DataType Source #

dataCast1 :: Typeable t => ( forall d. Data d => c (t d)) -> Maybe (c Fixity ) Source #

dataCast2 :: Typeable t => ( forall d e. ( Data d, Data e) => c (t d e)) -> Maybe (c Fixity ) Source #

gmapT :: ( forall b. Data b => b -> b) -> Fixity -> Fixity Source #

gmapQl :: (r -> r' -> r) -> r -> ( forall d. Data d => d -> r') -> Fixity -> r Source #

gmapQr :: forall r r'. (r' -> r -> r) -> r -> ( forall d. Data d => d -> r') -> Fixity -> r Source #

gmapQ :: ( forall d. Data d => d -> u) -> Fixity -> [u] Source #

gmapQi :: Int -> ( forall d. Data d => d -> u) -> Fixity -> u Source #

gmapM :: Monad m => ( forall d. Data d => d -> m d) -> Fixity -> m Fixity Source #

gmapMp :: MonadPlus m => ( forall d. Data d => d -> m d) -> Fixity -> m Fixity Source #

gmapMo :: MonadPlus m => ( forall d. Data d => d -> m d) -> Fixity -> m Fixity Source #

Ord Fixity Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

Show Fixity Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

The following three functions all create lists of fixities from textual representations of operators. The intended usage is e.g.

fixs = infixr_ 0  ["$","$!","`seq`"]

Note that the operators are expected as you would write them infix, i.e. with ` characters surrounding varid operators, and varsym operators written as is.

Collections of fixities

preludeFixities :: [ Fixity ] Source #

All fixities defined in the Prelude.

baseFixities :: [ Fixity ] Source #

All fixities defined in the base package.

Note that the +++ operator appears in both Control.Arrows and Text.ParserCombinators.ReadP. The listed precedence for +++ in this list is that of Control.Arrows.

Applying fixities to an AST

class AppFixity ast where Source #

All AST elements that may include expressions which in turn may need fixity tweaking will be instances of this class.

Methods

applyFixities Source #

Arguments

:: MonadFail m
=> [ Fixity ]

The fixities to account for.

-> ast SrcSpanInfo

The element to tweak.

-> m (ast SrcSpanInfo )

The same element, but with operator expressions updated, or a failure.

Tweak any expressions in the element to account for the fixities given. Assumes that all operator expressions are fully left associative chains to begin with.

Instances

Instances details
AppFixity Alt Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity FieldUpdate Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity QualStmt Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity Stmt Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity PatField Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity RPat Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity PXAttr Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity Pat Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity Splice Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity Bracket Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity XAttr Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity Exp Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity GuardedRhs Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity Rhs Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity InstDecl Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity ClassDecl Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity Match Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity IPBind Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity Binds Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity Annotation Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity PatternSynDirection Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity Decl Source #
Instance details

Defined in Language.Haskell.Exts.Fixity

AppFixity Module Source #
Instance details

Defined in Language.Haskell.Exts.Fixity