1
1
mirror of https://github.com/github/semantic.git synced 2024-12-20 21:31:48 +03:00

Revert "Subterm takes a parameter for the monadic context."

This reverts commit 1d3e72a833681f3010446cd636af86e005290745.
This commit is contained in:
Rob Rix 2018-03-13 17:09:18 -04:00
parent d6c6662283
commit 2ecc371f8d

View File

@ -45,22 +45,22 @@ type OpenFAlgebra f a = forall b . (b -> a) -> f b -> a
type OpenRAlgebra f t a = forall b . (b -> (t, a)) -> f b -> a
-- | A subterm and its computed value, used in 'SubtermAlgebra'.
data Subterm m t a = Subterm { subterm :: !t, subtermValue :: !(m a) }
data Subterm t a = Subterm { subterm :: !t, subtermValue :: !a }
deriving (Eq, Foldable, Functor, Ord, Show, Traversable)
instance Functor m => Bifunctor (Subterm m) where
bimap f g (Subterm a b) = Subterm (f a) (fmap g b)
instance Bifunctor Subterm where
bimap f g (Subterm a b) = Subterm (f a) (g b)
-- | Like an R-algebra, but using 'Subterm' to label the fields instead of an anonymous pair.
type SubtermAlgebra f m t a = f (Subterm m t a) -> m a
type SubtermAlgebra f t a = f (Subterm t a) -> a
-- | Fold a 'Recursive' structure using a 'SubtermAlgebra'. Like 'para', but with named fields for subterms and values.
foldSubterms :: Recursive t => SubtermAlgebra (Base t) m t a -> t -> m a
foldSubterms :: Recursive t => SubtermAlgebra (Base t) t a -> t -> a
foldSubterms algebra = go where go = algebra . fmap (Subterm <*> go) . project
-- | Extract a term from said term's 'Base' functor populated with 'Subterm' fields.
embedSubterm :: Corecursive t => Base t (Subterm m t a) -> t
embedSubterm :: Corecursive t => Base t (Subterm t a) -> t
embedSubterm e = embed (subterm <$> e)
-- | Promote an 'FAlgebra' into an 'RAlgebra' (by dropping the original parameter).