packages feed

alms-0.6.0: src/Type.hs

-- | The internal representation of types, created by the type checker
--   from the syntactic types in 'AST.Type'.
module Type (
  module Type.Analyses,
  module Type.ArrowAnnotations,
  module Type.Internal,
  module Type.Ppr,
  module Type.Recursive,
  module Type.Reduce,
  module Type.Subst,
  module Type.Syntax,
  module Type.TyVar,
) where

import Type.Analyses
import Type.ArrowAnnotations
import Type.Internal
import Type.Ppr
import Type.Recursive (standardizeMus)
import Type.Reduce
import Type.Subst
import Type.Syntax
import Type.TyVar