{-# OPTIONS_GHC -Wno-unused-imports #-}
{-# OPTIONS_GHC -Wno-unused-matches #-}
{-# OPTIONS_GHC -Wno-deprecations #-}
module Language.LSP.Protocol.Internal.Types.InlineValueRegistrationOptions where
import Control.DeepSeq
import Data.Hashable
import GHC.Generics
import Language.LSP.Protocol.Utils.Misc
import Prettyprinter
import qualified Data.Aeson as Aeson
import qualified Data.Row.Aeson as Aeson
import qualified Data.Row.Hashable as Hashable
import qualified Data.Text
import qualified Language.LSP.Protocol.Internal.Types.DocumentSelector
import qualified Language.LSP.Protocol.Types.Common
data InlineValueRegistrationOptions = InlineValueRegistrationOptions
{
InlineValueRegistrationOptions -> Maybe Bool
_workDoneProgress :: (Maybe Bool)
,
InlineValueRegistrationOptions -> DocumentSelector |? Null
_documentSelector :: (Language.LSP.Protocol.Internal.Types.DocumentSelector.DocumentSelector Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Types.Common.Null)
,
InlineValueRegistrationOptions -> Maybe Text
_id :: (Maybe Data.Text.Text)
}
deriving stock (Int -> InlineValueRegistrationOptions -> ShowS
[InlineValueRegistrationOptions] -> ShowS
InlineValueRegistrationOptions -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [InlineValueRegistrationOptions] -> ShowS
$cshowList :: [InlineValueRegistrationOptions] -> ShowS
show :: InlineValueRegistrationOptions -> String
$cshow :: InlineValueRegistrationOptions -> String
showsPrec :: Int -> InlineValueRegistrationOptions -> ShowS
$cshowsPrec :: Int -> InlineValueRegistrationOptions -> ShowS
Show, InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
$c/= :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
== :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
$c== :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
Eq, Eq InlineValueRegistrationOptions
InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Ordering
InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> InlineValueRegistrationOptions
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> InlineValueRegistrationOptions
$cmin :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> InlineValueRegistrationOptions
max :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> InlineValueRegistrationOptions
$cmax :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> InlineValueRegistrationOptions
>= :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
$c>= :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
> :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
$c> :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
<= :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
$c<= :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
< :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
$c< :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Bool
compare :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Ordering
$ccompare :: InlineValueRegistrationOptions
-> InlineValueRegistrationOptions -> Ordering
Ord, forall x.
Rep InlineValueRegistrationOptions x
-> InlineValueRegistrationOptions
forall x.
InlineValueRegistrationOptions
-> Rep InlineValueRegistrationOptions x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep InlineValueRegistrationOptions x
-> InlineValueRegistrationOptions
$cfrom :: forall x.
InlineValueRegistrationOptions
-> Rep InlineValueRegistrationOptions x
Generic)
deriving anyclass (InlineValueRegistrationOptions -> ()
forall a. (a -> ()) -> NFData a
rnf :: InlineValueRegistrationOptions -> ()
$crnf :: InlineValueRegistrationOptions -> ()
NFData, Eq InlineValueRegistrationOptions
Int -> InlineValueRegistrationOptions -> Int
InlineValueRegistrationOptions -> Int
forall a. Eq a -> (Int -> a -> Int) -> (a -> Int) -> Hashable a
hash :: InlineValueRegistrationOptions -> Int
$chash :: InlineValueRegistrationOptions -> Int
hashWithSalt :: Int -> InlineValueRegistrationOptions -> Int
$chashWithSalt :: Int -> InlineValueRegistrationOptions -> Int
Hashable)
deriving forall ann. [InlineValueRegistrationOptions] -> Doc ann
forall ann. InlineValueRegistrationOptions -> Doc ann
forall a.
(forall ann. a -> Doc ann)
-> (forall ann. [a] -> Doc ann) -> Pretty a
prettyList :: forall ann. [InlineValueRegistrationOptions] -> Doc ann
$cprettyList :: forall ann. [InlineValueRegistrationOptions] -> Doc ann
pretty :: forall ann. InlineValueRegistrationOptions -> Doc ann
$cpretty :: forall ann. InlineValueRegistrationOptions -> Doc ann
Pretty via (ViaJSON InlineValueRegistrationOptions)
instance Aeson.ToJSON InlineValueRegistrationOptions where
toJSON :: InlineValueRegistrationOptions -> Value
toJSON (InlineValueRegistrationOptions Maybe Bool
arg0 DocumentSelector |? Null
arg1 Maybe Text
arg2) = [Pair] -> Value
Aeson.object forall a b. (a -> b) -> a -> b
$ forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat forall a b. (a -> b) -> a -> b
$ [String
"workDoneProgress" forall kv v. (KeyValue kv, ToJSON v) => String -> Maybe v -> [kv]
Language.LSP.Protocol.Types.Common..=? Maybe Bool
arg0
,[Key
"documentSelector" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Aeson..= DocumentSelector |? Null
arg1]
,String
"id" forall kv v. (KeyValue kv, ToJSON v) => String -> Maybe v -> [kv]
Language.LSP.Protocol.Types.Common..=? Maybe Text
arg2]
instance Aeson.FromJSON InlineValueRegistrationOptions where
parseJSON :: Value -> Parser InlineValueRegistrationOptions
parseJSON = forall a. String -> (Object -> Parser a) -> Value -> Parser a
Aeson.withObject String
"InlineValueRegistrationOptions" forall a b. (a -> b) -> a -> b
$ \Object
arg -> Maybe Bool
-> (DocumentSelector |? Null)
-> Maybe Text
-> InlineValueRegistrationOptions
InlineValueRegistrationOptions forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Object
arg forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Aeson..:! Key
"workDoneProgress" forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Object
arg forall a. FromJSON a => Object -> Key -> Parser a
Aeson..: Key
"documentSelector" forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Object
arg forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Aeson..:! Key
"id"