File tree Expand file tree Collapse file tree 2 files changed +26
-7
lines changed Expand file tree Collapse file tree 2 files changed +26
-7
lines changed Original file line number Diff line number Diff line change 11
22module Text.Parsing.Parser.Language
3- -- ( haskellDef, haskell
4- -- , mondrianDef, mondrian
5- -- , emptyDef
6- -- , haskellStyle
7- -- , javaStyle
8- -- )
3+ ( haskellDef
4+ , haskell
5+ , emptyDef
6+ , haskellStyle
7+ , javaStyle
8+ )
99 where
1010
1111import Prelude
Original file line number Diff line number Diff line change 11-- | Functions for working with streams of tokens.
22
3- module Text.Parsing.Parser.Token where
3+ module Text.Parsing.Parser.Token
4+ ( token
5+ , when
6+ , match
7+ , LanguageDef ()
8+ , GenLanguageDef (LanguageDef)
9+ , unGenLanguageDef
10+ , TokenParser ()
11+ , GenTokenParser ()
12+ , makeTokenParser
13+ -- should these be exported? Maybe they should go in a different module?
14+ , digit
15+ , hexDigit
16+ , octDigit
17+ , upper
18+ , space
19+ , letter
20+ , alphaNum
21+ )
22+ where
423
524import Prelude
625
You can’t perform that action at this time.
0 commit comments