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

Fix up some language extensions &c.

This commit is contained in:
Rob Rix 2018-05-04 19:10:01 -04:00
parent 4c83723fbe
commit 04fb5d36b1

View File

@ -1,5 +1,4 @@
{-# LANGUAGE GeneralizedNewtypeDeriving, TypeFamilies, TypeOperators, UndecidableInstances #-}
{-# OPTIONS_GHC -Wno-redundant-constraints #-} -- For the Interpreter instances Evaluator constraint
{-# LANGUAGE GeneralizedNewtypeDeriving, TypeOperators #-}
module Analysis.Abstract.Dead
( Dead(..)
, revivingTerms
@ -36,7 +35,6 @@ subterms term = term `cons` para (foldMap (uncurry cons)) term
revivingTerms :: ( Corecursive term
, Member (State (Dead term)) effects
, Ord term
, Recursive term
)
=> SubtermAlgebra (Base term) term (Evaluator location term value effects a)
-> SubtermAlgebra (Base term) term (Evaluator location term value effects a)