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
36 lines (34 loc) · 1.2 KB
/
Parser.hs
File metadata and controls
36 lines (34 loc) · 1.2 KB
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
30
31
32
33
34
35
36
-----------------------------------------------------------------------------
--
-- Module : Language.PureScript.Parser
-- Copyright : (c) Phil Freeman 2013
-- License : MIT
--
-- Maintainer : Phil Freeman <paf31@cantab.net>
-- Stability : experimental
-- Portability :
--
-- |
-- 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.Types as P
import Language.PureScript.Parser.State as P
import Language.PureScript.Parser.Kinds as P
import Language.PureScript.Parser.Lexer as P
import Language.PureScript.Parser.Declarations as P
import Language.PureScript.Parser.JS as P