-
Notifications
You must be signed in to change notification settings - Fork 0
/
SrcToken.hs
26 lines (25 loc) · 857 Bytes
/
SrcToken.hs
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
module SrcToken where
data SrcToken = SrcTokenLambda
| SrcTokenImplicit
| SrcTokenInterface
| SrcTokenTInt
| SrcTokenLet
| SrcTokenIn
| SrcTokenVar String
| SrcTokenIfaceName String
| SrcTokenInt Int
| SrcTokenOP -- (
| SrcTokenCP -- )
| SrcTokenOB -- {
| SrcTokenCB -- }
| SrcTokenEQ
| SrcTokenColon
| SrcTokenSemiColon
| SrcTokenArrow -- ->
| SrcTokenBigArrow -- =>
| SrcTokenComma
| SrcTokenDot
| SrcTokenQuestion
| SrcTokenForall
| SrcTokenWith
deriving (Show)