ghc-8.0.2: The GHC API

Safe HaskellNone
LanguageHaskell2010

DsUtils

Description

Utility functions for constructing Core syntax, principally for desugaring

Synopsis

Documentation

data EquationInfo #

Constructors

EqnInfo 

Fields

data CanItFail #

Constructors

CanFail 
CantFail 

data CaseAlt a #

Constructors

MkCaseAlt 

mkSelectorBinds #

Arguments

:: [[Tickish Id]]

ticks to add, possibly

-> LPat Id

The pattern

-> CoreExpr

Expression to which the pattern is bound

-> DsM (Id, [(Id, CoreExpr)])

Id the rhs is bound to, for desugaring strict binds (see Note [Desugar Strict binds] in DsBinds) and all the desugared binds

decideBangHood #

Arguments

:: DynFlags 
-> LPat id

Original pattern

-> LPat id 

Use -XStrict to add a ! or remove a ~

Examples: ~pat => pat -- when -XStrict (even if pat = ~pat') !pat => !pat -- always pat => !pat -- when -XStrict pat => pat -- otherwise