Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
85900110
Commit
85900110
authored
Nov 01, 2006
by
andy@galois.com
Browse files
Fixing Alts to reflect Alternatives, rather than every pattern match in Hpc.
parent
7c48f5e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/deSugar/Coverage.lhs
View file @
85900110
...
...
@@ -122,7 +122,7 @@ addTickLHsBind (L pos (funBind@(FunBind { fun_id = (L _ id) }))) = do
let arg_count = matchGroupArity mg
let (tys,res_ty) = splitFunTysN arg_count ty
return $ L pos $ funBind { fun_matches = MatchGroup
({-L pos fn_entry:-}
matches'
)
ty
return $ L pos $ funBind { fun_matches = MatchGroup matches' ty
, fun_tick = tick_no
}
...
...
@@ -289,7 +289,7 @@ addTickHsExpr (HsBinTick _ _ _) = error "addTickhsExpr: HsBinTick _ _ _"
addTickHsExpr (HsTick _ _) = error "addTickhsExpr: HsTick _ _"
addTickMatchGroup (MatchGroup matches ty) = do
let isOneOfMany =
True -- AJG: for now
let isOneOfMany =
matchesOneOfMany matches
matches' <- mapM (liftL (addTickMatch isOneOfMany)) matches
return $ MatchGroup matches' ty
...
...
@@ -513,6 +513,14 @@ hpcLoc = L hpcSrcSpan
\end{code}
\begin{code}
matchesOneOfMany :: [LMatch Id] -> Bool
matchesOneOfMany lmatches = sum (map matchCount lmatches) > 1
where
matchCount (L _ (Match _pats _ty (GRHSs grhss _binds))) = length grhss
\end{code}
\begin{code}
---------------------------------------------------------------
-- Datatypes and file-access routines for the per-module (.mix)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment