----------------------------------------------------------------------------- -- -- Module : Language.PureScript.Sugar -- Copyright : (c) Phil Freeman 2013 -- License : MIT -- -- Maintainer : Phil Freeman -- Stability : experimental -- Portability : -- -- | -- Desugaring passes -- ----------------------------------------------------------------------------- module Language.PureScript.Sugar (desugar, module S) where import Control.Monad import Language.PureScript.Declarations import Language.PureScript.Sugar.Operators as S import Language.PureScript.Sugar.DoNotation as S import Language.PureScript.Sugar.CaseDeclarations as S import Language.PureScript.Sugar.TypeDeclarations as S import Language.PureScript.Sugar.BindingGroups as S import Language.PureScript.Sugar.TypeClasses as S -- | -- The desugaring pipeline proceeds as follows: -- -- * Introduce type synonyms for type class dictionaries -- -- * Rebracket user-defined binary operators -- -- * Desugar do-notation using the @Prelude.Monad@ type class -- -- * Desugar top-level case declarations into explicit case expressions -- -- * Desugar type declarations into value declarations with explicit type annotations -- -- * Group mutually recursive value and data declarations into binding groups. -- desugar :: [Module] -> Either String [Module] desugar = desugarTypeClasses >=> rebracket >=> desugarDo >=> desugarCasesModule >=> desugarTypeDeclarationsModule >=> createBindingGroupsModule