packages feed

language-glsl 0.0.1 → 0.0.2

raw patch · 2 files changed

+4/−5 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Language/GLSL/Parser.hs view
@@ -739,11 +739,10 @@ structDeclarator = do   i <- identifier   choice-    [ lbracket >> rbracket >> return (StructDeclarator i (Just Nothing))-    , do lbracket-         e <- constantExpression+    [ do lbracket+         e <- optionMaybe constantExpression          rbracket-         return $ StructDeclarator i (Just $ Just e)+         return $ StructDeclarator i (Just e)     , return $ StructDeclarator i Nothing     ] 
language-glsl.cabal view
@@ -1,5 +1,5 @@ name:                language-glsl-version:             0.0.1+version:             0.0.2 Cabal-Version:       >= 1.8 synopsis:            GLSL abstract syntax tree, parser, and pretty-printer description: