packages feed

dhscanner-ast 1.1.5 → 1.2.0

raw patch · 2 files changed

+4/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Ast: EQ :: Operator
+ Ast: NEQ :: Operator

Files

dhscanner-ast.cabal view
@@ -22,7 +22,7 @@     and models both of them as plain sequential code blocks. Every file has exactly one ast that represents it.
     Non Haskell parogrammers note: The ast is /immutable/ (like everything else in Haskell ...)
 
-version:            1.1.5
+version:            1.2.0
 license:            GPL-3.0-only
 license-file:       LICENSE
 author:             OrenGitHub
src/Ast.hs view
@@ -236,7 +236,9 @@      deriving ( Show, Eq, Ord, Generic, ToJSON, FromJSON )
 
 data Operator
-   = PLUS
+   = EQ
+   | NEQ
+   | PLUS
    | MINUS
    | TIMES
    | DIVIDE