definition:
|
updQNames :: Update (AExpr _) QName
updQNames f = trExpr AVar ALit comb ALet AFree AOr ACase branch typed
where
comb a ct (name, b) args = AComb a ct (f name, b) args
branch = ABranch . updPatCons f
typed a e ty = ATyped a e (updQNamesInTypeExpr f ty)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- update all qualified names in expression
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {trExpr}}
|
name:
|
updQNames
|
precedence:
|
no precedence defined
|
result-values:
|
{trExpr}
|
signature:
|
((String, String) -> (String, String)) -> FlatCurry.Annotated.Types.AExpr a
-> FlatCurry.Annotated.Types.AExpr a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|