sourcephile
/
git
/
haskell
/
symantic.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Add infix operators to HLint.
[haskell/symantic.git]
/
symantic-lib
/
Language
/
Symantic
/
Grammar
/
Megaparsec.hs
diff --git
a/symantic-lib/Language/Symantic/Grammar/Megaparsec.hs
b/symantic-lib/Language/Symantic/Grammar/Megaparsec.hs
index 29ee3cce3d95c37e799ee08feb789d91320dc67e..424c41a7912d14625746b8a00f0d8c38999f1979 100644
(file)
--- a/
symantic-lib/Language/Symantic/Grammar/Megaparsec.hs
+++ b/
symantic-lib/Language/Symantic/Grammar/Megaparsec.hs
@@
-131,7
+131,7
@@
instance ParsecC e s => Sym.Gram_AltApp (P.ParsecT e s m) where
optional = P.optional
many = P.many
some = P.some
-
skipMany
= P.skipMany
+
manySkip
= P.skipMany
instance ParsecC e s => Sym.Gram_CF (P.ParsecT e s m) where
CF f <& Reg p = CF $ P.lookAhead f <*> p
Reg f &> CF p = CF $ P.lookAhead f <*> p