mirror of
https://github.com/github/semantic.git
synced 2024-12-25 16:02:43 +03:00
Define stripAnnotations directly.
This commit is contained in:
parent
97320176dc
commit
aa1e36bc93
@ -195,9 +195,10 @@ annWith callStack = maybe id (fmap send . Ann) (stackLoc callStack)
|
||||
|
||||
|
||||
stripAnnotations :: (Member Core sig, Syntax sig) => Term sig a -> Term sig a
|
||||
stripAnnotations = iter id alg Var Var
|
||||
where alg t | Just c <- prj t, Ann _ b <- c = b
|
||||
| otherwise = Term t
|
||||
stripAnnotations (Var v) = Var v
|
||||
stripAnnotations (Term t)
|
||||
| Just c <- prj t, Ann _ b <- c = b
|
||||
| otherwise = Term (hmap stripAnnotations t)
|
||||
|
||||
|
||||
instance Syntax Core where
|
||||
|
Loading…
Reference in New Issue
Block a user