From 088c58f4057e669db45e09efb3ff0b69f49de899 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Fri, 24 Nov 2017 14:06:46 -0500 Subject: [PATCH] :fire: identifierAlgebra. --- src/Decorator.hs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/Decorator.hs b/src/Decorator.hs index 7dcc21a29..68c26b461 100644 --- a/src/Decorator.hs +++ b/src/Decorator.hs @@ -9,7 +9,6 @@ module Decorator , rToOpenR , openFToOpenR , decoratorWithAlgebra -, identifierAlgebra , syntaxIdentifierAlgebra , cyclomaticComplexityAlgebra , ConstructorName(..) @@ -27,7 +26,6 @@ import Data.Functor.Foldable import Data.JSON.Fields import Data.Record import Data.Proxy -import qualified Data.Syntax as Syntax import qualified Data.Syntax.Declaration as Declaration import qualified Data.Syntax.Statement as Statement import Data.Term @@ -78,16 +76,6 @@ newtype Identifier = Identifier ByteString instance ToJSONFields Identifier where toJSONFields (Identifier i) = [ "identifier" .= decodeUtf8 i ] --- | Produce the identifier for a given term, if any. --- --- Identifier syntax is labelled, as well as declaration syntax identified by these, but other uses of these identifiers are not, e.g. the declaration of a class or method or binding of a variable will be labelled, but a function call will not. -identifierAlgebra :: (Syntax.Identifier :< fs, Declaration.Method :< fs, Declaration.Class :< fs, Apply Foldable fs, Apply Functor fs) => FAlgebra (Term (Union fs) a) (Maybe Identifier) -identifierAlgebra (In _ union) = case union of - _ | Just (Syntax.Identifier s) <- prj union -> Just (Identifier s) - _ | Just Declaration.Class{..} <- prj union -> classIdentifier - _ | Just Declaration.Method{..} <- prj union -> methodName - _ -> Nothing - syntaxIdentifierAlgebra :: RAlgebra (Term S.Syntax a) (Maybe Identifier) syntaxIdentifierAlgebra (In _ syntax) = case syntax of S.Assignment f _ -> identifier f