never executed always true always false
    1 {-# LANGUAGE DeriveGeneric, DeriveDataTypeable, DeriveFunctor, DeriveTraversable, DeriveFoldable #-}
    2 
    3 module Conjure.Language.Expression.Op.Range where
    4 
    5 import Conjure.Prelude
    6 import Conjure.Language.Expression.Op.Internal.Common
    7 
    8 import qualified Data.Aeson as JSON             -- aeson
    9 import qualified Data.Aeson.KeyMap as KM
   10 
   11 import qualified Data.Vector as V               -- vector
   12 
   13 
   14 data OpRange x = OpRange x
   15     deriving (Eq, Ord, Show, Data, Functor, Traversable, Foldable, Typeable, Generic)
   16 
   17 instance Serialize x => Serialize (OpRange x)
   18 instance Hashable  x => Hashable  (OpRange x)
   19 instance ToJSON    x => ToJSON    (OpRange x) where toJSON = genericToJSON jsonOptions
   20 instance FromJSON  x => FromJSON  (OpRange x) where parseJSON = genericParseJSON jsonOptions
   21 
   22 instance (Pretty x, TypeOf x) => TypeOf (OpRange x) where
   23     typeOf p@(OpRange x) = do
   24         ty <- typeOf x
   25         case ty of
   26             TypeFunction _ a -> return (TypeSet a)
   27             TypeSequence a   -> return (TypeSet a)
   28             _                -> raiseTypeError p
   29 
   30 instance SimplifyOp OpRange x where
   31     simplifyOp _ = na "simplifyOp{OpRange}"
   32 
   33 instance Pretty x => Pretty (OpRange x) where
   34     prettyPrec _ (OpRange a) = "range" <> prParens (pretty a)
   35 
   36 instance VarSymBreakingDescription x => VarSymBreakingDescription (OpRange x) where
   37     varSymBreakingDescription (OpRange a) = JSON.Object $ KM.fromList
   38         [ ("type", JSON.String "OpRange")
   39         , ("children", JSON.Array $ V.fromList
   40             [ varSymBreakingDescription a
   41             ])
   42         ]