definition:
|
missingConsInBranch :: ProgInfo [(QName,Int)] -> [TABranchExpr] -> [(QName,Int)]
missingConsInBranch _ [] =
error "missingConsInBranch: case with empty branches!"
missingConsInBranch _ (ABranch (ALPattern _ _) _ : _) =
error "TODO: case with literal pattern"
missingConsInBranch siblingconsinfo
(ABranch (APattern _ (cons,_) _) _ : brs) =
let othercons = maybe (error $ "Sibling constructors of " ++
showQName cons ++ " not found!")
id
(lookupProgInfo cons siblingconsinfo)
branchcons = map (patCons . branchPattern) brs
in filter ((`notElem` branchcons) . fst) othercons
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Returns the constructors (name/arity) which are missing in the given
-- branches of a case construct.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
missingConsInBranch
|
precedence:
|
no precedence defined
|
result-values:
|
{:,[]}
|
signature:
|
Analysis.ProgInfo.ProgInfo [((String, String), Prelude.Int)]
-> [FlatCurry.Annotated.Types.ABranchExpr FlatCurry.Types.TypeExpr]
-> [((String, String), Prelude.Int)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|