File tree 3 files changed +8
-10
lines changed
3 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 18
18
" package.json"
19
19
],
20
20
"dependencies" : {
21
- "purescript-transformers" : " ~0.2.1" ,
22
- "purescript-either" : " ~0.1.3" ,
21
+ "purescript-transformers" : " ~0.3.0" ,
22
+ "purescript-either" : " ~0.1.4" ,
23
+ "purescript-identity" : " ~0.1.0" ,
23
24
"purescript-maybe" : " ~0.2.1" ,
24
25
"purescript-arrays" : " ~0.2.1" ,
25
- "purescript-strings" : " ~0.4.0 " ,
26
- "purescript-foldable-traversable" : " ~0.1.3 "
26
+ "purescript-strings" : " ~0.4.1 " ,
27
+ "purescript-foldable-traversable" : " ~0.1.4 "
27
28
}
28
29
}
Original file line number Diff line number Diff line change 41
41
42
42
instance plusParserT :: (Monad m) => Plus (ParserT s m)
43
43
44
+ instance showParseError :: Show ParseError
45
+
44
46
45
47
### Values
46
48
57
59
58
60
## Module Text.Parsing.Parser.Combinators
59
61
60
- ### Type Class Instances
61
-
62
- instance showParseError :: Show ParseError
63
-
64
-
65
62
### Values
66
63
67
64
(<?>) :: forall m s a. (Monad m) => ParserT s m a -> String -> ParserT s m a
Original file line number Diff line number Diff line change 1
1
module Text.Parsing.Parser where
2
2
3
3
import Data.Either
4
+ import Data.Identity
4
5
import Data.Maybe
5
6
import Data.Monoid
6
7
import Data.Tuple
@@ -9,7 +10,6 @@ import Control.Alt
9
10
import Control.Alternative
10
11
import Control.Lazy
11
12
import Control.Monad
12
- import Control.Monad.Identity
13
13
import Control.Monad.Trans
14
14
import Control.Monad.State.Class
15
15
import Control.Monad.State.Trans
You can’t perform that action at this time.
0 commit comments