forked from purescript/purescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPretty.hs
More file actions
32 lines (27 loc) · 970 Bytes
/
Pretty.hs
File metadata and controls
32 lines (27 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
-----------------------------------------------------------------------------
--
-- Module : Language.PureScript.Pretty
-- Copyright : (c) Phil Freeman 2013
-- License : MIT
--
-- Maintainer : Phil Freeman <paf31@cantab.net>
-- Stability : experimental
-- Portability :
--
-- |
-- A collection of pretty printers for core data types:
--
-- [@Language.PureScript.Pretty.Kinds@] Pretty printer for kinds
--
-- [@Language.PureScript.Pretty.Values@] Pretty printer for values
--
-- [@Language.PureScript.Pretty.Types@] Pretty printer for types
--
-- [@Language.PureScript.Pretty.JS@] Pretty printer for values, used for code generation
--
-----------------------------------------------------------------------------
module Language.PureScript.Pretty (module P) where
import Language.PureScript.Pretty.Kinds as P
import Language.PureScript.Pretty.Values as P
import Language.PureScript.Pretty.Types as P
import Language.PureScript.Pretty.JS as P