forked from purescript/purescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParser.hs
More file actions
23 lines (22 loc) · 816 Bytes
/
Parser.hs
File metadata and controls
23 lines (22 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- |
-- A collection of parsers for core data types:
--
-- [@Language.PureScript.Parser.Kinds@] Parser for kinds
--
-- [@Language.PureScript.Parser.Values@] Parser for values
--
-- [@Language.PureScript.Parser.Types@] Parser for types
--
-- [@Language.PureScript.Parser.Declaration@] Parsers for declarations and modules
--
-- [@Language.PureScript.Parser.State@] Parser state, including indentation
--
-- [@Language.PureScript.Parser.Common@] Common parsing utility functions
--
module Language.PureScript.Parser (module P) where
import Language.PureScript.Parser.Common as P
import Language.PureScript.Parser.Declarations as P
import Language.PureScript.Parser.Kinds as P
import Language.PureScript.Parser.Lexer as P
import Language.PureScript.Parser.State as P
import Language.PureScript.Parser.Types as P