packages feed

language-ats 0.1.1.6 → 0.1.1.7

raw patch · 4 files changed

+4/−1 lines, 4 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Language.ATS: NotEq :: BinOp

Files

language-ats.cabal view
@@ -1,5 +1,5 @@ name:                language-ats-version:             0.1.1.6+version:             0.1.1.7 synopsis:            Parser and pretty-printer for ATS. description:         Parser and pretty-printer for [ATS](http://www.ats-lang.org/), written with Happy and Alex. license:             BSD3
src/Language/ATS/Parser.y view
@@ -553,6 +553,7 @@       | eq { Equal }       | mod { Mod }       | percent { Mod }+      | doubleBrackets { NotEq }  -- | Optionally parse a function body OptExpression : { Nothing }
src/Language/ATS/PrettyPrint.hs view
@@ -89,6 +89,7 @@     pretty GreaterThanEq = ">="     pretty StaticEq      = "=="     pretty Mod           = "%"+    pretty NotEq         = "<>"  splits :: BinOp -> Bool splits Mult       = True
src/Language/ATS/Types.hs view
@@ -222,6 +222,7 @@            | LogicalOr            | StaticEq            | Mod+           | NotEq            deriving (Show, Eq, Generic, NFData)  -- FIXME add position information?