definition: |
renameProp2EasyCheck :: CurryProg -> CurryProg renameProp2EasyCheck prog = updCProg id (map rnmMod) id id id id id id (updQNamesInCProg (\ (mod,n) -> (rnmMod mod,n)) prog) where rnmMod mod | mod == propModule = easyCheckModule | otherwise = mod |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
-- Rename all module references to "Test.Prop" into "Test.EasyCheck" |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
name: |
renameProp2EasyCheck |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
AbstractCurry.Types.CurryProg -> AbstractCurry.Types.CurryProg |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |