packages feed

dhscanner-ast 0.1.0.4 → 0.1.0.5

raw patch · 2 files changed

+2/−1 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

+ Ast: [stmtBlockContent] :: StmtBlockContent -> [Stmt]
- Ast: StmtBlockContent :: Location -> StmtBlockContent
+ Ast: StmtBlockContent :: [Stmt] -> Location -> StmtBlockContent

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:            0.1.0.4
+version:            0.1.0.5
 license:            GPL-3.0-only
 license-file:       LICENSE
 author:             OrenGitHub
src/Ast.hs view
@@ -270,6 +270,7 @@ data StmtBlockContent
    = StmtBlockContent
      {
+         stmtBlockContent :: [ Stmt ],
          stmtBlockLocation :: Location
      }
      deriving ( Show, Eq, Ord, Generic, ToJSON, FromJSON )