6133N/A{-# LANGUAGE CPP, TypeFamilies, DeriveDataTypeable #-}
6133N/A
6133N/Amodule PGIP.GraphQL.Result.Axiom where
6133N/A
6133N/Aimport PGIP.GraphQL.Result.FileRange
6133N/Aimport PGIP.GraphQL.Result.Symbol
6133N/A
6133N/Aimport Data.Data
6133N/A
6133N/Adata Axiom = Axiom { __typename :: String
6133N/A , fileRange :: Maybe FileRange
6133N/A , locId :: String
6133N/A , name :: String
6133N/A , symbols :: [Symbol]
6133N/A , text :: String
6133N/A } deriving (Show, Typeable, Data)
6133N/A