forked from purescript/purescript
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAST.hs
More file actions
24 lines (22 loc) · 799 Bytes
/
AST.hs
File metadata and controls
24 lines (22 loc) · 799 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
-----------------------------------------------------------------------------
--
-- Module : Language.PureScript.AST
-- Copyright : (c) 2013-14 Phil Freeman, (c) 2014 Gary Burgess, and other contributors
-- License : MIT
--
-- Maintainer : Phil Freeman <paf31@cantab.net>
-- Stability : experimental
-- Portability :
--
-- | The initial PureScript AST
--
-----------------------------------------------------------------------------
module Language.PureScript.AST (
module AST
) where
import Language.PureScript.AST.Binders as AST
import Language.PureScript.AST.Declarations as AST
import Language.PureScript.AST.Operators as AST
import Language.PureScript.AST.SourcePos as AST
import Language.PureScript.AST.Traversals as AST
import Language.PureScript.AST.Exported as AST