uuagc 0.9.27 → 0.9.28
raw patch · 6 files changed
+14/−9 lines, 6 files
Files
- cabal-plugin/src/Distribution/Simple/UUAGC/AbsSyn.hs +3/−0
- cabal-plugin/src/Distribution/Simple/UUAGC/Parser.hs +1/−1
- cabal-plugin/src/Distribution/Simple/UUAGC/UUAGC.hs +7/−5
- src/Version.hs +1/−1
- uuagc.cabal +1/−1
- uuagc.cabal-for-ghc-6.6 +1/−1
cabal-plugin/src/Distribution/Simple/UUAGC/AbsSyn.hs view
@@ -126,6 +126,9 @@ fromUUAGCOtoArgs (UForceIrrefutable fp) = toLEOpA oforceirrefutable fp fromUUAGCOtoArgs UOptimize = toLOp ooptimize fromUUAGCOtoArgs UModuleDefault = toLOp omodule+fromUUAGCOtoArgs UHaskellSyntax = toLOp ohaskellsyntax+fromUUAGCOtoArgs UDoubleColons = toLOp odoublecolons+fromUUAGCOtoArgs ULCKeyWords = toLOp olckeywords fromUUAGCOstoArgs :: UUAGCOptions -> [String] fromUUAGCOstoArgs = map fromUUAGCOtoArgs
cabal-plugin/src/Distribution/Simple/UUAGC/Parser.hs view
@@ -27,7 +27,7 @@ ,UWErrors, UWIgnore, UDumpGrammar, UDumpCGrammar, UGenTraces ,UGenUseTraces, UGenCostCentres, UGenLinePragmas, USepSemMods ,UGenFileDeps, UGenVisage, UGenAttrList, ULCKeyWords- ,UDoubleColons ]+ ,UDoubleColons, USelf ] gFlags = [(oall, [odata, ocatas, osemfuns, osignatures, opretty, orename]) ,(ooptimize, [ovisit,ocase])
cabal-plugin/src/Distribution/Simple/UUAGC/UUAGC.hs view
@@ -80,12 +80,14 @@ isModeOption UDoubleColons = True isModeOption _ = False + args = fromUUAGCOstoArgs modeOpts +++ [ "--genfiledeps"+ , "--="++(intercalate ":" sp)+ , f+ ]+ -- putStrLn ("Generating deps: " ++ unwords args) (_,(Just ppOutput), (Just ppError),ph) <- createProcess- $ (proc uuagcn ( fromUUAGCOstoArgs modeOpts- ++ ["--genfiledeps"- ,"--="++(intercalate ":" sp)- ,f- ]))+ $ (proc uuagcn args) { std_in = Inherit , std_out = CreatePipe , std_err = CreatePipe
src/Version.hs view
@@ -1,4 +1,4 @@ module Version where banner :: String -banner = "Attribute Grammar compiler / HUT project. Version 0.9.27" +banner = "Attribute Grammar compiler / HUT project. Version 0.9.28"
uuagc.cabal view
@@ -1,7 +1,7 @@ cabal-version: >=1.2 build-type: Simple name: uuagc-version: 0.9.27+version: 0.9.28 license: GPL license-file: LICENSE maintainer: Arie Middelkoop <ariem@cs.uu.nl>
uuagc.cabal-for-ghc-6.6 view
@@ -1,5 +1,5 @@ name: uuagc-version: 0.9.27+version: 0.9.28 license: GPL license-file: LICENSE maintainer: Arie Middelkoop <ariem@cs.uu.nl>