{-# LANGUAGE CPP #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoMonoLocalBinds #-}
module Wingman.LanguageServer where
import Control.Arrow ((***))
import Control.Monad
import Control.Monad.IO.Class
import Control.Monad.RWS
import Control.Monad.State (State, evalState)
import Control.Monad.Trans.Maybe
import Data.Bifunctor (first)
import Data.Coerce
import Data.Functor ((<&>))
import Data.Functor.Identity (runIdentity)
import qualified Data.HashMap.Strict as Map
import Data.IORef (readIORef)
import qualified Data.Map as M
import Data.Maybe
import Data.Set (Set)
import qualified Data.Set as S
import qualified Data.Text as T
import Data.Traversable
import Development.IDE (hscEnv, getFilesOfInterestUntracked, ShowDiagnostic (ShowDiag), srcSpanToRange, defineNoDiagnostics, IdeAction)
import Development.IDE.Core.PositionMapping (idDelta)
import Development.IDE.Core.RuleTypes
import Development.IDE.Core.Rules (usePropertyAction)
import Development.IDE.Core.Service (runAction)
import Development.IDE.Core.Shake (IdeState (..), uses, define, use, addPersistentRule)
import qualified Development.IDE.Core.Shake as IDE
import Development.IDE.Core.UseStale
import Development.IDE.GHC.Compat hiding (empty)
import qualified Development.IDE.GHC.Compat.Util as FastString
import Development.IDE.GHC.Error (realSrcSpanToRange)
import Development.IDE.GHC.ExactPrint
import Development.IDE.Graph (Action, RuleResult, Rules, action)
import Development.IDE.Graph.Classes (Hashable, NFData)
import Development.IDE.Spans.LocalBindings (Bindings, getDefiningBindings)
import GHC.Generics (Generic)
import Generics.SYB hiding (Generic)
import qualified Ide.Plugin.Config as Plugin
import Ide.Plugin.Properties
import Ide.PluginUtils (usePropertyLsp)
import Ide.Types (PluginId)
import Language.Haskell.GHC.ExactPrint (Transform, modifyAnnsT, addAnnotationsForPretty)
import Language.LSP.Server (MonadLsp, sendNotification)
import Language.LSP.Types hiding
(SemanticTokenAbsolute (length, line),
SemanticTokenRelative (length),
SemanticTokensEdit (_start))
import Language.LSP.Types.Capabilities
import Prelude hiding (span)
import Retrie (transformA)
import Wingman.Context
import Wingman.GHC
import Wingman.Judgements
import Wingman.Judgements.SYB (everythingContaining, metaprogramQ, metaprogramAtQ)
import Wingman.Judgements.Theta
import Wingman.Range
import Wingman.StaticPlugin (pattern WingmanMetaprogram, pattern MetaprogramSyntax)
import Wingman.Types
tacticDesc :: T.Text -> T.Text
tacticDesc :: Text -> Text
tacticDesc Text
name = Text
"fill the hole using the " Text -> Text -> Text
forall a. Semigroup a => a -> a -> a
<> Text
name Text -> Text -> Text
forall a. Semigroup a => a -> a -> a
<> Text
" tactic"
tcCommandName :: TacticCommand -> T.Text
tcCommandName :: TacticCommand -> Text
tcCommandName = String -> Text
T.pack (String -> Text)
-> (TacticCommand -> String) -> TacticCommand -> Text
forall b c a. (b -> c) -> (a -> b) -> a -> c
. TacticCommand -> String
forall a. Show a => a -> String
show
runIde :: String -> String -> IdeState -> Action a -> IO a
runIde :: String -> String -> IdeState -> Action a -> IO a
runIde String
herald String
action IdeState
state = String -> IdeState -> Action a -> IO a
forall a. String -> IdeState -> Action a -> IO a
runAction (String
"Wingman." String -> String -> String
forall a. Semigroup a => a -> a -> a
<> String
herald String -> String -> String
forall a. Semigroup a => a -> a -> a
<> String
"." String -> String -> String
forall a. Semigroup a => a -> a -> a
<> String
action) IdeState
state
runIdeAction :: String -> String -> IdeState -> IdeAction a -> IO a
runIdeAction :: String -> String -> IdeState -> IdeAction a -> IO a
runIdeAction String
herald String
action IdeState
state = String -> ShakeExtras -> IdeAction a -> IO a
forall a. String -> ShakeExtras -> IdeAction a -> IO a
IDE.runIdeAction (String
"Wingman." String -> String -> String
forall a. Semigroup a => a -> a -> a
<> String
herald String -> String -> String
forall a. Semigroup a => a -> a -> a
<> String
"." String -> String -> String
forall a. Semigroup a => a -> a -> a
<> String
action) (IdeState -> ShakeExtras
shakeExtras IdeState
state)
runCurrentIde
:: forall a r
. ( r ~ RuleResult a
, Eq a , Hashable a , Show a , Typeable a , NFData a
, Show r, Typeable r, NFData r
)
=> String
-> IdeState
-> NormalizedFilePath
-> a
-> MaybeT IO (Tracked 'Current r)
runCurrentIde :: String
-> IdeState
-> NormalizedFilePath
-> a
-> MaybeT IO (Tracked 'Current r)
runCurrentIde String
herald IdeState
state NormalizedFilePath
nfp a
a =
IO (Maybe (Tracked 'Current r)) -> MaybeT IO (Tracked 'Current r)
forall (m :: * -> *) a. m (Maybe a) -> MaybeT m a
MaybeT (IO (Maybe (Tracked 'Current r)) -> MaybeT IO (Tracked 'Current r))
-> IO (Maybe (Tracked 'Current r))
-> MaybeT IO (Tracked 'Current r)
forall a b. (a -> b) -> a -> b
$ (Maybe r -> Maybe (Tracked 'Current r))
-> IO (Maybe r) -> IO (Maybe (Tracked 'Current r))
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap ((r -> Tracked 'Current r) -> Maybe r -> Maybe (Tracked 'Current r)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap r -> Tracked 'Current r
forall age. age -> Tracked 'Current age
unsafeMkCurrent) (IO (Maybe r) -> IO (Maybe (Tracked 'Current r)))
-> IO (Maybe r) -> IO (Maybe (Tracked 'Current r))
forall a b. (a -> b) -> a -> b
$ String -> String -> IdeState -> Action (Maybe r) -> IO (Maybe r)
forall a. String -> String -> IdeState -> Action a -> IO a
runIde String
herald (a -> String
forall a. Show a => a -> String
show a
a) IdeState
state (Action (Maybe r) -> IO (Maybe r))
-> Action (Maybe r) -> IO (Maybe r)
forall a b. (a -> b) -> a -> b
$ a -> NormalizedFilePath -> Action (Maybe r)
forall k v.
IdeRule k v =>
k -> NormalizedFilePath -> Action (Maybe v)
use a
a NormalizedFilePath
nfp
runStaleIde
:: forall a r
. ( r ~ RuleResult a
, Eq a , Hashable a , Show a , Typeable a , NFData a
, Show r, Typeable r, NFData r
)
=> String
-> IdeState
-> NormalizedFilePath
-> a
-> MaybeT IO (TrackedStale r)
runStaleIde :: String
-> IdeState
-> NormalizedFilePath
-> a
-> MaybeT IO (TrackedStale r)
runStaleIde String
herald IdeState
state NormalizedFilePath
nfp a
a =
IO (Maybe (TrackedStale r)) -> MaybeT IO (TrackedStale r)
forall (m :: * -> *) a. m (Maybe a) -> MaybeT m a
MaybeT (IO (Maybe (TrackedStale r)) -> MaybeT IO (TrackedStale r))
-> IO (Maybe (TrackedStale r)) -> MaybeT IO (TrackedStale r)
forall a b. (a -> b) -> a -> b
$ String
-> String
-> IdeState
-> Action (Maybe (TrackedStale r))
-> IO (Maybe (TrackedStale r))
forall a. String -> String -> IdeState -> Action a -> IO a
runIde String
herald (a -> String
forall a. Show a => a -> String
show a
a) IdeState
state (Action (Maybe (TrackedStale r)) -> IO (Maybe (TrackedStale r)))
-> Action (Maybe (TrackedStale r)) -> IO (Maybe (TrackedStale r))
forall a b. (a -> b) -> a -> b
$ a -> NormalizedFilePath -> Action (Maybe (TrackedStale r))
forall k v.
IdeRule k v =>
k -> NormalizedFilePath -> Action (Maybe (TrackedStale v))
useWithStale a
a NormalizedFilePath
nfp
unsafeRunStaleIde
:: forall a r
. ( r ~ RuleResult a
, Eq a , Hashable a , Show a , Typeable a , NFData a
, Show r, Typeable r, NFData r
)
=> String
-> IdeState
-> NormalizedFilePath
-> a
-> MaybeT IO r
unsafeRunStaleIde :: String -> IdeState -> NormalizedFilePath -> a -> MaybeT IO r
unsafeRunStaleIde String
herald IdeState
state NormalizedFilePath
nfp a
a = do
(r
r, PositionMapping
_) <- IO (Maybe (r, PositionMapping)) -> MaybeT IO (r, PositionMapping)
forall (m :: * -> *) a. m (Maybe a) -> MaybeT m a
MaybeT (IO (Maybe (r, PositionMapping)) -> MaybeT IO (r, PositionMapping))
-> IO (Maybe (r, PositionMapping))
-> MaybeT IO (r, PositionMapping)
forall a b. (a -> b) -> a -> b
$ String
-> String
-> IdeState
-> Action (Maybe (r, PositionMapping))
-> IO (Maybe (r, PositionMapping))
forall a. String -> String -> IdeState -> Action a -> IO a
runIde String
herald (a -> String
forall a. Show a => a -> String
show a
a) IdeState
state (Action (Maybe (r, PositionMapping))
-> IO (Maybe (r, PositionMapping)))
-> Action (Maybe (r, PositionMapping))
-> IO (Maybe (r, PositionMapping))
forall a b. (a -> b) -> a -> b
$ a -> NormalizedFilePath -> Action (Maybe (r, PositionMapping))
forall k v.
IdeRule k v =>
k -> NormalizedFilePath -> Action (Maybe (v, PositionMapping))
IDE.useWithStale a
a NormalizedFilePath
nfp
r -> MaybeT IO r
forall (f :: * -> *) a. Applicative f => a -> f a
pure r
r
unsafeRunStaleIdeFast
:: forall a r
. ( r ~ RuleResult a
, Eq a , Hashable a , Show a , Typeable a , NFData a
, Show r, Typeable r, NFData r
)
=> String
-> IdeState
-> NormalizedFilePath
-> a
-> MaybeT IO r
unsafeRunStaleIdeFast :: String -> IdeState -> NormalizedFilePath -> a -> MaybeT IO r
unsafeRunStaleIdeFast String
herald IdeState
state NormalizedFilePath
nfp a
a = do
(r
r, PositionMapping
_) <- IO (Maybe (r, PositionMapping)) -> MaybeT IO (r, PositionMapping)
forall (m :: * -> *) a. m (Maybe a) -> MaybeT m a
MaybeT (IO (Maybe (r, PositionMapping)) -> MaybeT IO (r, PositionMapping))
-> IO (Maybe (r, PositionMapping))
-> MaybeT IO (r, PositionMapping)
forall a b. (a -> b) -> a -> b
$ String
-> String
-> IdeState
-> IdeAction (Maybe (r, PositionMapping))
-> IO (Maybe (r, PositionMapping))
forall a. String -> String -> IdeState -> IdeAction a -> IO a
runIdeAction String
herald (a -> String
forall a. Show a => a -> String
show a
a) IdeState
state (IdeAction (Maybe (r, PositionMapping))
-> IO (Maybe (r, PositionMapping)))
-> IdeAction (Maybe (r, PositionMapping))
-> IO (Maybe (r, PositionMapping))
forall a b. (a -> b) -> a -> b
$ a -> NormalizedFilePath -> IdeAction (Maybe (r, PositionMapping))
forall k v.
IdeRule k v =>
k -> NormalizedFilePath -> IdeAction (Maybe (v, PositionMapping))
IDE.useWithStaleFast a
a NormalizedFilePath
nfp
r -> MaybeT IO r
forall (f :: * -> *) a. Applicative f => a -> f a
pure r
r
properties :: Properties
'[ 'PropertyKey "hole_severity" ('TEnum (Maybe DiagnosticSeverity))
, 'PropertyKey "max_use_ctor_actions" 'TInteger
, 'PropertyKey "timeout_duration" 'TInteger
, 'PropertyKey "auto_gas" 'TInteger
, 'PropertyKey "proofstate_styling" 'TBoolean
]
properties :: Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
properties = Properties '[]
emptyProperties
Properties '[]
-> (Properties '[]
-> Properties '[ 'PropertyKey "proofstate_styling" 'TBoolean])
-> Properties '[ 'PropertyKey "proofstate_styling" 'TBoolean]
forall a b. a -> (a -> b) -> b
& KeyNameProxy "proofstate_styling"
-> Text
-> Bool
-> Properties '[]
-> Properties '[ 'PropertyKey "proofstate_styling" 'TBoolean]
forall (s :: Symbol) (r :: [PropertyKey]).
(KnownSymbol s, NotElem s r) =>
KeyNameProxy s
-> Text
-> Bool
-> Properties r
-> Properties ('PropertyKey s 'TBoolean : r)
defineBooleanProperty IsLabel "proofstate_styling" (KeyNameProxy "proofstate_styling")
KeyNameProxy "proofstate_styling"
#proofstate_styling
Text
"Should Wingman emit styling markup when showing metaprogram proof states?" Bool
True
Properties '[ 'PropertyKey "proofstate_styling" 'TBoolean]
-> (Properties '[ 'PropertyKey "proofstate_styling" 'TBoolean]
-> Properties
'[ 'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean])
-> Properties
'[ 'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
forall a b. a -> (a -> b) -> b
& KeyNameProxy "auto_gas"
-> Text
-> Int
-> Properties '[ 'PropertyKey "proofstate_styling" 'TBoolean]
-> Properties
'[ 'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
forall (s :: Symbol) (r :: [PropertyKey]).
(KnownSymbol s, NotElem s r) =>
KeyNameProxy s
-> Text
-> Int
-> Properties r
-> Properties ('PropertyKey s 'TInteger : r)
defineIntegerProperty IsLabel "auto_gas" (KeyNameProxy "auto_gas")
KeyNameProxy "auto_gas"
#auto_gas
Text
"The depth of the search tree when performing \"Attempt to fill hole\". Bigger values will be able to derive more solutions, but will take exponentially more time." Int
4
Properties
'[ 'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> (Properties
'[ 'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> Properties
'[ 'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean])
-> Properties
'[ 'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
forall a b. a -> (a -> b) -> b
& KeyNameProxy "timeout_duration"
-> Text
-> Int
-> Properties
'[ 'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> Properties
'[ 'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
forall (s :: Symbol) (r :: [PropertyKey]).
(KnownSymbol s, NotElem s r) =>
KeyNameProxy s
-> Text
-> Int
-> Properties r
-> Properties ('PropertyKey s 'TInteger : r)
defineIntegerProperty IsLabel "timeout_duration" (KeyNameProxy "timeout_duration")
KeyNameProxy "timeout_duration"
#timeout_duration
Text
"The timeout for Wingman actions, in seconds" Int
2
Properties
'[ 'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> (Properties
'[ 'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> Properties
'[ 'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean])
-> Properties
'[ 'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
forall a b. a -> (a -> b) -> b
& KeyNameProxy "max_use_ctor_actions"
-> Text
-> Int
-> Properties
'[ 'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> Properties
'[ 'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
forall (s :: Symbol) (r :: [PropertyKey]).
(KnownSymbol s, NotElem s r) =>
KeyNameProxy s
-> Text
-> Int
-> Properties r
-> Properties ('PropertyKey s 'TInteger : r)
defineIntegerProperty IsLabel
"max_use_ctor_actions" (KeyNameProxy "max_use_ctor_actions")
KeyNameProxy "max_use_ctor_actions"
#max_use_ctor_actions
Text
"Maximum number of `Use constructor <x>` code actions that can appear" Int
5
Properties
'[ 'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> (Properties
'[ 'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean])
-> Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
forall a b. a -> (a -> b) -> b
& KeyNameProxy "hole_severity"
-> Text
-> [(Maybe DiagnosticSeverity, Text)]
-> Maybe DiagnosticSeverity
-> Properties
'[ 'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
forall (s :: Symbol) (r :: [PropertyKey]) a.
(KnownSymbol s, NotElem s r, ToJSON a, FromJSON a, Eq a, Show a) =>
KeyNameProxy s
-> Text
-> [(a, Text)]
-> a
-> Properties r
-> Properties ('PropertyKey s ('TEnum a) : r)
defineEnumProperty IsLabel "hole_severity" (KeyNameProxy "hole_severity")
KeyNameProxy "hole_severity"
#hole_severity
Text
"The severity to use when showing hole diagnostics. These are noisy, but some editors don't allow jumping to all severities."
[ (DiagnosticSeverity -> Maybe DiagnosticSeverity
forall a. a -> Maybe a
Just DiagnosticSeverity
DsError, Text
"error")
, (DiagnosticSeverity -> Maybe DiagnosticSeverity
forall a. a -> Maybe a
Just DiagnosticSeverity
DsWarning, Text
"warning")
, (DiagnosticSeverity -> Maybe DiagnosticSeverity
forall a. a -> Maybe a
Just DiagnosticSeverity
DsInfo, Text
"info")
, (DiagnosticSeverity -> Maybe DiagnosticSeverity
forall a. a -> Maybe a
Just DiagnosticSeverity
DsHint, Text
"hint")
, (Maybe DiagnosticSeverity
forall a. Maybe a
Nothing, Text
"none")
]
Maybe DiagnosticSeverity
forall a. Maybe a
Nothing
getTacticConfig :: MonadLsp Plugin.Config m => PluginId -> m Config
getTacticConfig :: PluginId -> m Config
getTacticConfig PluginId
pId =
Int -> Int -> Int -> Bool -> Config
Config
(Int -> Int -> Int -> Bool -> Config)
-> m Int -> m (Int -> Int -> Bool -> Config)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> KeyNameProxy "max_use_ctor_actions"
-> PluginId
-> Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> m (ToHsType 'TInteger)
forall (s :: Symbol) (k :: PropertyKey) (t :: PropertyType)
(r :: [PropertyKey]) (m :: * -> *).
(HasProperty s k t r, MonadLsp Config m) =>
KeyNameProxy s -> PluginId -> Properties r -> m (ToHsType t)
usePropertyLsp IsLabel
"max_use_ctor_actions" (KeyNameProxy "max_use_ctor_actions")
KeyNameProxy "max_use_ctor_actions"
#max_use_ctor_actions PluginId
pId Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
properties
m (Int -> Int -> Bool -> Config)
-> m Int -> m (Int -> Bool -> Config)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> KeyNameProxy "timeout_duration"
-> PluginId
-> Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> m (ToHsType 'TInteger)
forall (s :: Symbol) (k :: PropertyKey) (t :: PropertyType)
(r :: [PropertyKey]) (m :: * -> *).
(HasProperty s k t r, MonadLsp Config m) =>
KeyNameProxy s -> PluginId -> Properties r -> m (ToHsType t)
usePropertyLsp IsLabel "timeout_duration" (KeyNameProxy "timeout_duration")
KeyNameProxy "timeout_duration"
#timeout_duration PluginId
pId Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
properties
m (Int -> Bool -> Config) -> m Int -> m (Bool -> Config)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> KeyNameProxy "auto_gas"
-> PluginId
-> Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> m (ToHsType 'TInteger)
forall (s :: Symbol) (k :: PropertyKey) (t :: PropertyType)
(r :: [PropertyKey]) (m :: * -> *).
(HasProperty s k t r, MonadLsp Config m) =>
KeyNameProxy s -> PluginId -> Properties r -> m (ToHsType t)
usePropertyLsp IsLabel "auto_gas" (KeyNameProxy "auto_gas")
KeyNameProxy "auto_gas"
#auto_gas PluginId
pId Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
properties
m (Bool -> Config) -> m Bool -> m Config
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> KeyNameProxy "proofstate_styling"
-> PluginId
-> Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> m (ToHsType 'TBoolean)
forall (s :: Symbol) (k :: PropertyKey) (t :: PropertyType)
(r :: [PropertyKey]) (m :: * -> *).
(HasProperty s k t r, MonadLsp Config m) =>
KeyNameProxy s -> PluginId -> Properties r -> m (ToHsType t)
usePropertyLsp IsLabel "proofstate_styling" (KeyNameProxy "proofstate_styling")
KeyNameProxy "proofstate_styling"
#proofstate_styling PluginId
pId Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
properties
getIdeDynflags
:: IdeState
-> NormalizedFilePath
-> MaybeT IO DynFlags
getIdeDynflags :: IdeState -> NormalizedFilePath -> MaybeT IO DynFlags
getIdeDynflags IdeState
state NormalizedFilePath
nfp = do
ModSummaryResult
msr <- String
-> IdeState
-> NormalizedFilePath
-> GetModSummaryWithoutTimestamps
-> MaybeT IO ModSummaryResult
forall a r.
(r ~ RuleResult a, Eq a, Hashable a, Show a, Typeable a, NFData a,
Show r, Typeable r, NFData r) =>
String -> IdeState -> NormalizedFilePath -> a -> MaybeT IO r
unsafeRunStaleIde String
"getIdeDynflags" IdeState
state NormalizedFilePath
nfp GetModSummaryWithoutTimestamps
GetModSummaryWithoutTimestamps
DynFlags -> MaybeT IO DynFlags
forall (f :: * -> *) a. Applicative f => a -> f a
pure (DynFlags -> MaybeT IO DynFlags) -> DynFlags -> MaybeT IO DynFlags
forall a b. (a -> b) -> a -> b
$ ModSummary -> DynFlags
ms_hspp_opts (ModSummary -> DynFlags) -> ModSummary -> DynFlags
forall a b. (a -> b) -> a -> b
$ ModSummaryResult -> ModSummary
msrModSummary ModSummaryResult
msr
getAllMetaprograms :: Data a => a -> [String]
getAllMetaprograms :: a -> [String]
getAllMetaprograms = ([String] -> [String] -> [String])
-> GenericQ [String] -> GenericQ [String]
forall r. (r -> r -> r) -> GenericQ r -> GenericQ r
everything [String] -> [String] -> [String]
forall a. Semigroup a => a -> a -> a
(<>) (GenericQ [String] -> GenericQ [String])
-> GenericQ [String] -> GenericQ [String]
forall a b. (a -> b) -> a -> b
$ [String] -> (HsExpr GhcTc -> [String]) -> a -> [String]
forall a b r. (Typeable a, Typeable b) => r -> (b -> r) -> a -> r
mkQ [String]
forall a. Monoid a => a
mempty ((HsExpr GhcTc -> [String]) -> a -> [String])
-> (HsExpr GhcTc -> [String]) -> a -> [String]
forall a b. (a -> b) -> a -> b
$ \case
WingmanMetaprogram FastString
fs -> [ FastString -> String
FastString.unpackFS FastString
fs ]
(HsExpr GhcTc
_ :: HsExpr GhcTc) -> [String]
forall a. Monoid a => a
mempty
judgementForHole
:: IdeState
-> NormalizedFilePath
-> Tracked 'Current Range
-> Config
-> MaybeT IO HoleJudgment
judgementForHole :: IdeState
-> NormalizedFilePath
-> Tracked 'Current Range
-> Config
-> MaybeT IO HoleJudgment
judgementForHole IdeState
state NormalizedFilePath
nfp Tracked 'Current Range
range Config
cfg = do
let stale :: a -> MaybeT IO (TrackedStale (RuleResult a))
stale a
a = String
-> IdeState
-> NormalizedFilePath
-> a
-> MaybeT IO (TrackedStale (RuleResult a))
forall a r.
(r ~ RuleResult a, Eq a, Hashable a, Show a, Typeable a, NFData a,
Show r, Typeable r, NFData r) =>
String
-> IdeState
-> NormalizedFilePath
-> a
-> MaybeT IO (TrackedStale r)
runStaleIde String
"judgementForHole" IdeState
state NormalizedFilePath
nfp a
a
TrackedStale Tracked ('Stale s) HieAstResult
asts PositionMap ('Stale s) 'Current
amapping <- GetHieAst -> MaybeT IO (TrackedStale (RuleResult GetHieAst))
forall a.
(Hashable a, Show a, Show (RuleResult a), Typeable a,
Typeable (RuleResult a), NFData a, NFData (RuleResult a)) =>
a -> MaybeT IO (TrackedStale (RuleResult a))
stale GetHieAst
GetHieAst
case Tracked ('Stale s) HieAstResult -> HieAstResult
forall (age :: Age) a. Tracked age a -> a
unTrack Tracked ('Stale s) HieAstResult
asts of
HAR _ _ _ _ (HieFromDisk _) -> String -> MaybeT IO HoleJudgment
forall (m :: * -> *) a. MonadFail m => String -> m a
fail String
"Need a fresh hie file"
HAR _ (unsafeCopyAge asts -> hf) _ _ HieFresh -> do
Tracked ('Stale s) Range
range' <- Maybe (Tracked ('Stale s) Range)
-> MaybeT IO (Tracked ('Stale s) Range)
forall (m :: * -> *) a. Monad m => Maybe a -> MaybeT m a
liftMaybe (Maybe (Tracked ('Stale s) Range)
-> MaybeT IO (Tracked ('Stale s) Range))
-> Maybe (Tracked ('Stale s) Range)
-> MaybeT IO (Tracked ('Stale s) Range)
forall a b. (a -> b) -> a -> b
$ PositionMap ('Stale s) 'Current
-> Tracked 'Current Range -> Maybe (Tracked ('Stale s) Range)
forall a (from :: Age) (to :: Age).
MapAge a =>
PositionMap from to -> Tracked to a -> Maybe (Tracked from a)
mapAgeFrom PositionMap ('Stale s) 'Current
amapping Tracked 'Current Range
range
TrackedStale Bindings
binds <- GetBindings -> MaybeT IO (TrackedStale (RuleResult GetBindings))
forall a.
(Hashable a, Show a, Show (RuleResult a), Typeable a,
Typeable (RuleResult a), NFData a, NFData (RuleResult a)) =>
a -> MaybeT IO (TrackedStale (RuleResult a))
stale GetBindings
GetBindings
tcg :: TrackedStale TcGblEnv
tcg@(TrackedStale Tracked ('Stale s) TcGblEnv
tcg_t PositionMap ('Stale s) 'Current
tcg_map)
<- (TrackedStale TcModuleResult -> TrackedStale TcGblEnv)
-> MaybeT IO (TrackedStale TcModuleResult)
-> MaybeT IO (TrackedStale TcGblEnv)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap ((TcModuleResult -> TcGblEnv)
-> TrackedStale TcModuleResult -> TrackedStale TcGblEnv
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap TcModuleResult -> TcGblEnv
tmrTypechecked)
(MaybeT IO (TrackedStale TcModuleResult)
-> MaybeT IO (TrackedStale TcGblEnv))
-> MaybeT IO (TrackedStale TcModuleResult)
-> MaybeT IO (TrackedStale TcGblEnv)
forall a b. (a -> b) -> a -> b
$ TypeCheck -> MaybeT IO (TrackedStale (RuleResult TypeCheck))
forall a.
(Hashable a, Show a, Show (RuleResult a), Typeable a,
Typeable (RuleResult a), NFData a, NFData (RuleResult a)) =>
a -> MaybeT IO (TrackedStale (RuleResult a))
stale TypeCheck
TypeCheck
TrackedStale HscEnvEq
hscenv <- GhcSessionDeps
-> MaybeT IO (TrackedStale (RuleResult GhcSessionDeps))
forall a.
(Hashable a, Show a, Show (RuleResult a), Typeable a,
Typeable (RuleResult a), NFData a, NFData (RuleResult a)) =>
a -> MaybeT IO (TrackedStale (RuleResult a))
stale GhcSessionDeps
GhcSessionDeps
(Tracked ('Stale s) RealSrcSpan
rss, Type
g) <- Maybe (Tracked ('Stale s) RealSrcSpan, Type)
-> MaybeT IO (Tracked ('Stale s) RealSrcSpan, Type)
forall (m :: * -> *) a. Monad m => Maybe a -> MaybeT m a
liftMaybe (Maybe (Tracked ('Stale s) RealSrcSpan, Type)
-> MaybeT IO (Tracked ('Stale s) RealSrcSpan, Type))
-> Maybe (Tracked ('Stale s) RealSrcSpan, Type)
-> MaybeT IO (Tracked ('Stale s) RealSrcSpan, Type)
forall a b. (a -> b) -> a -> b
$ Tracked ('Stale s) Range
-> Tracked ('Stale s) (HieASTs Type)
-> Maybe (Tracked ('Stale s) RealSrcSpan, Type)
forall (age :: Age).
Tracked age Range
-> Tracked age (HieASTs Type)
-> Maybe (Tracked age RealSrcSpan, Type)
getSpanAndTypeAtHole Tracked ('Stale s) Range
range' Tracked ('Stale s) (HieASTs a)
Tracked ('Stale s) (HieASTs Type)
hf
Tracked 'Current RealSrcSpan
new_rss <- Maybe (Tracked 'Current RealSrcSpan)
-> MaybeT IO (Tracked 'Current RealSrcSpan)
forall (m :: * -> *) a. Monad m => Maybe a -> MaybeT m a
liftMaybe (Maybe (Tracked 'Current RealSrcSpan)
-> MaybeT IO (Tracked 'Current RealSrcSpan))
-> Maybe (Tracked 'Current RealSrcSpan)
-> MaybeT IO (Tracked 'Current RealSrcSpan)
forall a b. (a -> b) -> a -> b
$ PositionMap ('Stale s) 'Current
-> Tracked ('Stale s) RealSrcSpan
-> Maybe (Tracked 'Current RealSrcSpan)
forall a (from :: Age) (to :: Age).
MapAge a =>
PositionMap from to -> Tracked from a -> Maybe (Tracked to a)
mapAgeTo PositionMap ('Stale s) 'Current
amapping Tracked ('Stale s) RealSrcSpan
rss
Tracked ('Stale s) RealSrcSpan
tcg_rss <- Maybe (Tracked ('Stale s) RealSrcSpan)
-> MaybeT IO (Tracked ('Stale s) RealSrcSpan)
forall (m :: * -> *) a. Monad m => Maybe a -> MaybeT m a
liftMaybe (Maybe (Tracked ('Stale s) RealSrcSpan)
-> MaybeT IO (Tracked ('Stale s) RealSrcSpan))
-> Maybe (Tracked ('Stale s) RealSrcSpan)
-> MaybeT IO (Tracked ('Stale s) RealSrcSpan)
forall a b. (a -> b) -> a -> b
$ PositionMap ('Stale s) 'Current
-> Tracked 'Current RealSrcSpan
-> Maybe (Tracked ('Stale s) RealSrcSpan)
forall a (from :: Age) (to :: Age).
MapAge a =>
PositionMap from to -> Tracked to a -> Maybe (Tracked from a)
mapAgeFrom PositionMap ('Stale s) 'Current
tcg_map Tracked 'Current RealSrcSpan
new_rss
let henv :: HscEnvEq
henv = TrackedStale HscEnvEq -> HscEnvEq
forall a. TrackedStale a -> a
untrackedStaleValue TrackedStale HscEnvEq
hscenv
ExternalPackageState
eps <- IO ExternalPackageState -> MaybeT IO ExternalPackageState
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO ExternalPackageState -> MaybeT IO ExternalPackageState)
-> IO ExternalPackageState -> MaybeT IO ExternalPackageState
forall a b. (a -> b) -> a -> b
$ IORef ExternalPackageState -> IO ExternalPackageState
forall a. IORef a -> IO a
readIORef (IORef ExternalPackageState -> IO ExternalPackageState)
-> IORef ExternalPackageState -> IO ExternalPackageState
forall a b. (a -> b) -> a -> b
$ HscEnv -> IORef ExternalPackageState
hsc_EPS (HscEnv -> IORef ExternalPackageState)
-> HscEnv -> IORef ExternalPackageState
forall a b. (a -> b) -> a -> b
$ HscEnvEq -> HscEnv
hscEnv HscEnvEq
henv
(Judgement
jdg, Context
ctx) <- Maybe (Judgement, Context) -> MaybeT IO (Judgement, Context)
forall (m :: * -> *) a. Monad m => Maybe a -> MaybeT m a
liftMaybe (Maybe (Judgement, Context) -> MaybeT IO (Judgement, Context))
-> Maybe (Judgement, Context) -> MaybeT IO (Judgement, Context)
forall a b. (a -> b) -> a -> b
$ Config
-> Type
-> TrackedStale Bindings
-> Tracked 'Current RealSrcSpan
-> TrackedStale TcGblEnv
-> HscEnv
-> ExternalPackageState
-> Maybe (Judgement, Context)
mkJudgementAndContext Config
cfg Type
g TrackedStale Bindings
binds Tracked 'Current RealSrcSpan
new_rss TrackedStale TcGblEnv
tcg (HscEnvEq -> HscEnv
hscEnv HscEnvEq
henv) ExternalPackageState
eps
let mp :: Maybe Text
mp = Tracked ('Stale s) SrcSpan
-> Tracked ('Stale s) TcGblEnv -> Maybe Text
forall (age :: Age).
Tracked age SrcSpan -> Tracked age TcGblEnv -> Maybe Text
getMetaprogramAtSpan ((RealSrcSpan -> SrcSpan)
-> Tracked ('Stale s) RealSrcSpan -> Tracked ('Stale s) SrcSpan
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap (RealSrcSpan -> Maybe BufSpan -> SrcSpan
`RealSrcSpan` Maybe BufSpan
forall a. Maybe a
Nothing) Tracked ('Stale s) RealSrcSpan
tcg_rss) Tracked ('Stale s) TcGblEnv
tcg_t
DynFlags
dflags <- IdeState -> NormalizedFilePath -> MaybeT IO DynFlags
getIdeDynflags IdeState
state NormalizedFilePath
nfp
HoleJudgment -> MaybeT IO HoleJudgment
forall (f :: * -> *) a. Applicative f => a -> f a
pure (HoleJudgment -> MaybeT IO HoleJudgment)
-> HoleJudgment -> MaybeT IO HoleJudgment
forall a b. (a -> b) -> a -> b
$ HoleJudgment :: Tracked 'Current Range
-> Judgement -> Context -> DynFlags -> HoleSort -> HoleJudgment
HoleJudgment
{ hj_range :: Tracked 'Current Range
hj_range = (RealSrcSpan -> Range)
-> Tracked 'Current RealSrcSpan -> Tracked 'Current Range
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap RealSrcSpan -> Range
realSrcSpanToRange Tracked 'Current RealSrcSpan
new_rss
, hj_jdg :: Judgement
hj_jdg = Judgement
jdg
, hj_ctx :: Context
hj_ctx = Context
ctx
, hj_dflags :: DynFlags
hj_dflags = DynFlags
dflags
, hj_hole_sort :: HoleSort
hj_hole_sort = Maybe Text -> HoleSort
holeSortFor Maybe Text
mp
}
holeSortFor :: Maybe T.Text -> HoleSort
holeSortFor :: Maybe Text -> HoleSort
holeSortFor = HoleSort -> (Text -> HoleSort) -> Maybe Text -> HoleSort
forall b a. b -> (a -> b) -> Maybe a -> b
maybe HoleSort
Hole Text -> HoleSort
Metaprogram
mkJudgementAndContext
:: Config
-> Type
-> TrackedStale Bindings
-> Tracked 'Current RealSrcSpan
-> TrackedStale TcGblEnv
-> HscEnv
-> ExternalPackageState
-> Maybe (Judgement, Context)
mkJudgementAndContext :: Config
-> Type
-> TrackedStale Bindings
-> Tracked 'Current RealSrcSpan
-> TrackedStale TcGblEnv
-> HscEnv
-> ExternalPackageState
-> Maybe (Judgement, Context)
mkJudgementAndContext Config
cfg Type
g (TrackedStale Tracked ('Stale s) Bindings
binds PositionMap ('Stale s) 'Current
bmap) Tracked 'Current RealSrcSpan
rss (TrackedStale Tracked ('Stale s) TcGblEnv
tcg PositionMap ('Stale s) 'Current
tcgmap) HscEnv
hscenv ExternalPackageState
eps = do
Tracked ('Stale s) RealSrcSpan
binds_rss <- PositionMap ('Stale s) 'Current
-> Tracked 'Current RealSrcSpan
-> Maybe (Tracked ('Stale s) RealSrcSpan)
forall a (from :: Age) (to :: Age).
MapAge a =>
PositionMap from to -> Tracked to a -> Maybe (Tracked from a)
mapAgeFrom PositionMap ('Stale s) 'Current
bmap Tracked 'Current RealSrcSpan
rss
Tracked ('Stale s) RealSrcSpan
tcg_rss <- PositionMap ('Stale s) 'Current
-> Tracked 'Current RealSrcSpan
-> Maybe (Tracked ('Stale s) RealSrcSpan)
forall a (from :: Age) (to :: Age).
MapAge a =>
PositionMap from to -> Tracked to a -> Maybe (Tracked from a)
mapAgeFrom PositionMap ('Stale s) 'Current
tcgmap Tracked 'Current RealSrcSpan
rss
let tcs :: Tracked ('Stale s) (LHsBinds GhcTc)
tcs = (TcGblEnv -> LHsBinds GhcTc)
-> Tracked ('Stale s) TcGblEnv
-> Tracked ('Stale s) (LHsBinds GhcTc)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap TcGblEnv -> LHsBinds GhcTc
tcg_binds Tracked ('Stale s) TcGblEnv
tcg
ctx :: Context
ctx = Config
-> [(OccName, CType)]
-> TcGblEnv
-> HscEnv
-> ExternalPackageState
-> [Evidence]
-> Context
mkContext Config
cfg
(((Name, Maybe Type) -> Maybe (OccName, CType))
-> [(Name, Maybe Type)] -> [(OccName, CType)]
forall a b. (a -> Maybe b) -> [a] -> [b]
mapMaybe ((OccName, Maybe CType) -> Maybe (OccName, CType)
forall (t :: * -> *) (f :: * -> *) a.
(Traversable t, Applicative f) =>
t (f a) -> f (t a)
sequenceA ((OccName, Maybe CType) -> Maybe (OccName, CType))
-> ((Name, Maybe Type) -> (OccName, Maybe CType))
-> (Name, Maybe Type)
-> Maybe (OccName, CType)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (Name -> OccName
forall name. HasOccName name => name -> OccName
occName (Name -> OccName)
-> (Maybe Type -> Maybe CType)
-> (Name, Maybe Type)
-> (OccName, Maybe CType)
forall (a :: * -> * -> *) b c b' c'.
Arrow a =>
a b c -> a b' c' -> a (b, b') (c, c')
*** Maybe Type -> Maybe CType
coerce))
([(Name, Maybe Type)] -> [(OccName, CType)])
-> [(Name, Maybe Type)] -> [(OccName, CType)]
forall a b. (a -> b) -> a -> b
$ Tracked ('Stale s) [(Name, Maybe Type)] -> [(Name, Maybe Type)]
forall (age :: Age) a. Tracked age a -> a
unTrack
(Tracked ('Stale s) [(Name, Maybe Type)] -> [(Name, Maybe Type)])
-> Tracked ('Stale s) [(Name, Maybe Type)] -> [(Name, Maybe Type)]
forall a b. (a -> b) -> a -> b
$ Bindings -> RealSrcSpan -> [(Name, Maybe Type)]
getDefiningBindings (Bindings -> RealSrcSpan -> [(Name, Maybe Type)])
-> Tracked ('Stale s) Bindings
-> Tracked ('Stale s) (RealSrcSpan -> [(Name, Maybe Type)])
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Tracked ('Stale s) Bindings
binds Tracked ('Stale s) (RealSrcSpan -> [(Name, Maybe Type)])
-> Tracked ('Stale s) RealSrcSpan
-> Tracked ('Stale s) [(Name, Maybe Type)]
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Tracked ('Stale s) RealSrcSpan
binds_rss)
(Tracked ('Stale s) TcGblEnv -> TcGblEnv
forall (age :: Age) a. Tracked age a -> a
unTrack Tracked ('Stale s) TcGblEnv
tcg)
HscEnv
hscenv
ExternalPackageState
eps
[Evidence]
evidence
top_provs :: Hypothesis CType
top_provs = Tracked ('Stale s) RealSrcSpan
-> Tracked ('Stale s) (LHsBinds GhcTc) -> Hypothesis CType
forall (age :: Age).
Tracked age RealSrcSpan
-> Tracked age (LHsBinds GhcTc) -> Hypothesis CType
getRhsPosVals Tracked ('Stale s) RealSrcSpan
tcg_rss Tracked ('Stale s) (LHsBinds GhcTc)
tcs
already_destructed :: Set OccName
already_destructed = Tracked ('Stale s) SrcSpan
-> Tracked ('Stale s) (LHsBinds GhcTc) -> Set OccName
forall (age :: Age).
Tracked age SrcSpan -> Tracked age (LHsBinds GhcTc) -> Set OccName
getAlreadyDestructed ((RealSrcSpan -> SrcSpan)
-> Tracked ('Stale s) RealSrcSpan -> Tracked ('Stale s) SrcSpan
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap (RealSrcSpan -> Maybe BufSpan -> SrcSpan
`RealSrcSpan` Maybe BufSpan
forall a. Maybe a
Nothing) Tracked ('Stale s) RealSrcSpan
tcg_rss) Tracked ('Stale s) (LHsBinds GhcTc)
tcs
local_hy :: Hypothesis CType
local_hy = Hypothesis CType -> Hypothesis CType -> Hypothesis CType
forall a. Hypothesis a -> Hypothesis a -> Hypothesis a
spliceProvenance Hypothesis CType
top_provs
(Hypothesis CType -> Hypothesis CType)
-> Hypothesis CType -> Hypothesis CType
forall a b. (a -> b) -> a -> b
$ Tracked ('Stale s) RealSrcSpan
-> Tracked ('Stale s) Bindings -> Hypothesis CType
forall (age :: Age).
Tracked age RealSrcSpan -> Tracked age Bindings -> Hypothesis CType
hypothesisFromBindings Tracked ('Stale s) RealSrcSpan
binds_rss Tracked ('Stale s) Bindings
binds
evidence :: [Evidence]
evidence = Tracked ('Stale s) SrcSpan
-> Tracked ('Stale s) (LHsBinds GhcTc) -> [Evidence]
forall (age :: Age).
Tracked age SrcSpan -> Tracked age (LHsBinds GhcTc) -> [Evidence]
getEvidenceAtHole ((RealSrcSpan -> SrcSpan)
-> Tracked ('Stale s) RealSrcSpan -> Tracked ('Stale s) SrcSpan
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap (RealSrcSpan -> Maybe BufSpan -> SrcSpan
`RealSrcSpan` Maybe BufSpan
forall a. Maybe a
Nothing) Tracked ('Stale s) RealSrcSpan
tcg_rss) Tracked ('Stale s) (LHsBinds GhcTc)
tcs
cls_hy :: Hypothesis CType
cls_hy = (Evidence -> Hypothesis CType) -> [Evidence] -> Hypothesis CType
forall (t :: * -> *) m a.
(Foldable t, Monoid m) =>
(a -> m) -> t a -> m
foldMap Evidence -> Hypothesis CType
evidenceToHypothesis [Evidence]
evidence
subst :: TCvSubst
subst = TacticState -> TCvSubst
ts_unifier (TacticState -> TCvSubst) -> TacticState -> TCvSubst
forall a b. (a -> b) -> a -> b
$ [Evidence] -> TacticState -> TacticState
evidenceToSubst [Evidence]
evidence TacticState
defaultTacticState
(Judgement, Context) -> Maybe (Judgement, Context)
forall (f :: * -> *) a. Applicative f => a -> f a
pure
( DisallowReason -> Set OccName -> Judgement -> Judgement
forall a.
DisallowReason -> Set OccName -> Judgement' a -> Judgement' a
disallowing DisallowReason
AlreadyDestructed Set OccName
already_destructed
(Judgement -> Judgement) -> Judgement -> Judgement
forall a b. (a -> b) -> a -> b
$ (CType -> CType) -> Judgement -> Judgement
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap (Type -> CType
CType (Type -> CType) -> (CType -> Type) -> CType -> CType
forall b c a. (b -> c) -> (a -> b) -> a -> c
. TCvSubst -> Type -> Type
substTyAddInScope TCvSubst
subst (Type -> Type) -> (CType -> Type) -> CType -> Type
forall b c a. (b -> c) -> (a -> b) -> a -> c
. CType -> Type
unCType) (Judgement -> Judgement) -> Judgement -> Judgement
forall a b. (a -> b) -> a -> b
$
Context -> Hypothesis CType -> Bool -> Type -> Judgement
mkFirstJudgement
Context
ctx
(Hypothesis CType
local_hy Hypothesis CType -> Hypothesis CType -> Hypothesis CType
forall a. Semigroup a => a -> a -> a
<> Hypothesis CType
cls_hy)
(Tracked ('Stale s) RealSrcSpan
-> Tracked ('Stale s) (LHsBinds GhcTc) -> Bool
forall (age :: Age).
Tracked age RealSrcSpan -> Tracked age (LHsBinds GhcTc) -> Bool
isRhsHoleWithoutWhere Tracked ('Stale s) RealSrcSpan
tcg_rss Tracked ('Stale s) (LHsBinds GhcTc)
tcs)
Type
g
, Context
ctx
)
getAlreadyDestructed
:: Tracked age SrcSpan
-> Tracked age (LHsBinds GhcTc)
-> Set OccName
getAlreadyDestructed :: Tracked age SrcSpan -> Tracked age (LHsBinds GhcTc) -> Set OccName
getAlreadyDestructed (Tracked age SrcSpan -> SrcSpan
forall (age :: Age) a. Tracked age a -> a
unTrack -> SrcSpan
span) (Tracked age (LHsBinds GhcTc) -> LHsBinds GhcTc
forall (age :: Age) a. Tracked age a -> a
unTrack -> LHsBinds GhcTc
binds) =
SrcSpan -> GenericQ (Set OccName) -> LHsBinds GhcTc -> Set OccName
forall r. Monoid r => SrcSpan -> GenericQ r -> GenericQ r
everythingContaining SrcSpan
span
(Set OccName -> (HsExpr GhcTc -> Set OccName) -> a -> Set OccName
forall a b r. (Typeable a, Typeable b) => r -> (b -> r) -> a -> r
mkQ Set OccName
forall a. Monoid a => a
mempty ((HsExpr GhcTc -> Set OccName) -> a -> Set OccName)
-> (HsExpr GhcTc -> Set OccName) -> a -> Set OccName
forall a b. (a -> b) -> a -> b
$ \case
Case (HsVar XVar GhcTc
_ (L SrcSpan
_ (IdP GhcTc -> OccName
forall name. HasOccName name => name -> OccName
occName -> OccName
var))) [(Pat GhcTc, LHsExpr GhcTc)]
_ ->
OccName -> Set OccName
forall a. a -> Set a
S.singleton OccName
var
(HsExpr GhcTc
_ :: HsExpr GhcTc) -> Set OccName
forall a. Monoid a => a
mempty
) LHsBinds GhcTc
binds
getSpanAndTypeAtHole
:: Tracked age Range
-> Tracked age (HieASTs Type)
-> Maybe (Tracked age RealSrcSpan, Type)
getSpanAndTypeAtHole :: Tracked age Range
-> Tracked age (HieASTs Type)
-> Maybe (Tracked age RealSrcSpan, Type)
getSpanAndTypeAtHole r :: Tracked age Range
r@(Tracked age Range -> Range
forall (age :: Age) a. Tracked age a -> a
unTrack -> Range
range) (Tracked age (HieASTs Type) -> HieASTs Type
forall (age :: Age) a. Tracked age a -> a
unTrack -> HieASTs Type
hf) = do
Maybe (Maybe (Tracked age RealSrcSpan, Type))
-> Maybe (Tracked age RealSrcSpan, Type)
forall (m :: * -> *) a. Monad m => m (m a) -> m a
join (Maybe (Maybe (Tracked age RealSrcSpan, Type))
-> Maybe (Tracked age RealSrcSpan, Type))
-> Maybe (Maybe (Tracked age RealSrcSpan, Type))
-> Maybe (Tracked age RealSrcSpan, Type)
forall a b. (a -> b) -> a -> b
$ [Maybe (Tracked age RealSrcSpan, Type)]
-> Maybe (Maybe (Tracked age RealSrcSpan, Type))
forall a. [a] -> Maybe a
listToMaybe ([Maybe (Tracked age RealSrcSpan, Type)]
-> Maybe (Maybe (Tracked age RealSrcSpan, Type)))
-> [Maybe (Tracked age RealSrcSpan, Type)]
-> Maybe (Maybe (Tracked age RealSrcSpan, Type))
forall a b. (a -> b) -> a -> b
$ Map FastString (Maybe (Tracked age RealSrcSpan, Type))
-> [Maybe (Tracked age RealSrcSpan, Type)]
forall k a. Map k a -> [a]
M.elems (Map FastString (Maybe (Tracked age RealSrcSpan, Type))
-> [Maybe (Tracked age RealSrcSpan, Type)])
-> Map FastString (Maybe (Tracked age RealSrcSpan, Type))
-> [Maybe (Tracked age RealSrcSpan, Type)]
forall a b. (a -> b) -> a -> b
$ ((FastString
-> HieAST Type -> Maybe (Tracked age RealSrcSpan, Type))
-> Map FastString (HieAST Type)
-> Map FastString (Maybe (Tracked age RealSrcSpan, Type)))
-> Map FastString (HieAST Type)
-> (FastString
-> HieAST Type -> Maybe (Tracked age RealSrcSpan, Type))
-> Map FastString (Maybe (Tracked age RealSrcSpan, Type))
forall a b c. (a -> b -> c) -> b -> a -> c
flip (FastString
-> HieAST Type -> Maybe (Tracked age RealSrcSpan, Type))
-> Map FastString (HieAST Type)
-> Map FastString (Maybe (Tracked age RealSrcSpan, Type))
forall k a b. (k -> a -> b) -> Map k a -> Map k b
M.mapWithKey (HieASTs Type -> Map FastString (HieAST Type)
forall a. HieASTs a -> Map FastString (HieAST a)
getAsts HieASTs Type
hf) ((FastString
-> HieAST Type -> Maybe (Tracked age RealSrcSpan, Type))
-> Map FastString (Maybe (Tracked age RealSrcSpan, Type)))
-> (FastString
-> HieAST Type -> Maybe (Tracked age RealSrcSpan, Type))
-> Map FastString (Maybe (Tracked age RealSrcSpan, Type))
forall a b. (a -> b) -> a -> b
$ \FastString
fs HieAST Type
ast ->
case RealSrcSpan -> HieAST Type -> Maybe (HieAST Type)
forall a. RealSrcSpan -> HieAST a -> Maybe (HieAST a)
selectSmallestContaining (String -> Range -> RealSrcSpan
rangeToRealSrcSpan (FastString -> String
FastString.unpackFS FastString
fs) Range
range) HieAST Type
ast of
Maybe (HieAST Type)
Nothing -> Maybe (Tracked age RealSrcSpan, Type)
forall a. Maybe a
Nothing
Just HieAST Type
ast' -> do
let info :: NodeInfo Type
info = HieAST Type -> NodeInfo Type
forall a. HieAST a -> NodeInfo a
nodeInfo HieAST Type
ast'
Type
ty <- [Type] -> Maybe Type
forall a. [a] -> Maybe a
listToMaybe ([Type] -> Maybe Type) -> [Type] -> Maybe Type
forall a b. (a -> b) -> a -> b
$ NodeInfo Type -> [Type]
forall a. NodeInfo a -> [a]
nodeType NodeInfo Type
info
Bool -> Maybe BufSpan
forall (f :: * -> *). Alternative f => Bool -> f BufSpan
guard (Bool -> Maybe BufSpan) -> Bool -> Maybe BufSpan
forall a b. (a -> b) -> a -> b
$ (FastString
"HsUnboundVar",FastString
"HsExpr") (FastString, FastString) -> Set (FastString, FastString) -> Bool
forall a. Ord a => a -> Set a -> Bool
`S.member` NodeInfo Type -> Set (FastString, FastString)
forall a. NodeInfo a -> Set (FastString, FastString)
nodeAnnotations NodeInfo Type
info
OccName
occ <- ((ModuleName -> Maybe OccName)
-> (Name -> Maybe OccName)
-> Either ModuleName Name
-> Maybe OccName
forall a c b. (a -> c) -> (b -> c) -> Either a b -> c
either (Maybe OccName -> ModuleName -> Maybe OccName
forall a b. a -> b -> a
const Maybe OccName
forall a. Maybe a
Nothing) (OccName -> Maybe OccName
forall a. a -> Maybe a
Just (OccName -> Maybe OccName)
-> (Name -> OccName) -> Name -> Maybe OccName
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Name -> OccName
forall name. HasOccName name => name -> OccName
occName) (Either ModuleName Name -> Maybe OccName)
-> Maybe (Either ModuleName Name) -> Maybe OccName
forall (m :: * -> *) a b. Monad m => (a -> m b) -> m a -> m b
=<<)
(Maybe (Either ModuleName Name) -> Maybe OccName)
-> (Map (Either ModuleName Name) (IdentifierDetails Type)
-> Maybe (Either ModuleName Name))
-> Map (Either ModuleName Name) (IdentifierDetails Type)
-> Maybe OccName
forall b c a. (b -> c) -> (a -> b) -> a -> c
. [Either ModuleName Name] -> Maybe (Either ModuleName Name)
forall a. [a] -> Maybe a
listToMaybe
([Either ModuleName Name] -> Maybe (Either ModuleName Name))
-> (Map (Either ModuleName Name) (IdentifierDetails Type)
-> [Either ModuleName Name])
-> Map (Either ModuleName Name) (IdentifierDetails Type)
-> Maybe (Either ModuleName Name)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Set (Either ModuleName Name) -> [Either ModuleName Name]
forall a. Set a -> [a]
S.toList
(Set (Either ModuleName Name) -> [Either ModuleName Name])
-> (Map (Either ModuleName Name) (IdentifierDetails Type)
-> Set (Either ModuleName Name))
-> Map (Either ModuleName Name) (IdentifierDetails Type)
-> [Either ModuleName Name]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Map (Either ModuleName Name) (IdentifierDetails Type)
-> Set (Either ModuleName Name)
forall k a. Map k a -> Set k
M.keysSet
(Map (Either ModuleName Name) (IdentifierDetails Type)
-> Maybe OccName)
-> Map (Either ModuleName Name) (IdentifierDetails Type)
-> Maybe OccName
forall a b. (a -> b) -> a -> b
$ NodeInfo Type
-> Map (Either ModuleName Name) (IdentifierDetails Type)
forall a. NodeInfo a -> NodeIdentifiers a
nodeIdentifiers NodeInfo Type
info
Bool -> Maybe BufSpan
forall (f :: * -> *). Alternative f => Bool -> f BufSpan
guard (Bool -> Maybe BufSpan) -> Bool -> Maybe BufSpan
forall a b. (a -> b) -> a -> b
$ OccName -> Bool
isHole OccName
occ
(Tracked age RealSrcSpan, Type)
-> Maybe (Tracked age RealSrcSpan, Type)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Tracked age Range -> RealSrcSpan -> Tracked age RealSrcSpan
forall (age :: Age) a b. Tracked age a -> b -> Tracked age b
unsafeCopyAge Tracked age Range
r (RealSrcSpan -> Tracked age RealSrcSpan)
-> RealSrcSpan -> Tracked age RealSrcSpan
forall a b. (a -> b) -> a -> b
$ HieAST Type -> RealSrcSpan
forall a. HieAST a -> RealSrcSpan
nodeSpan HieAST Type
ast', Type
ty)
spliceProvenance
:: Hypothesis a
-> Hypothesis a
-> Hypothesis a
spliceProvenance :: Hypothesis a -> Hypothesis a -> Hypothesis a
spliceProvenance Hypothesis a
top Hypothesis a
x =
let bound :: Set OccName
bound = [OccName] -> Set OccName
forall a. Ord a => [a] -> Set a
S.fromList ([OccName] -> Set OccName) -> [OccName] -> Set OccName
forall a b. (a -> b) -> a -> b
$ (HyInfo a -> OccName) -> [HyInfo a] -> [OccName]
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap HyInfo a -> OccName
forall a. HyInfo a -> OccName
hi_name ([HyInfo a] -> [OccName]) -> [HyInfo a] -> [OccName]
forall a b. (a -> b) -> a -> b
$ Hypothesis a -> [HyInfo a]
forall a. Hypothesis a -> [HyInfo a]
unHypothesis Hypothesis a
top
in Hypothesis a -> Hypothesis a -> Hypothesis a
forall a. Monoid a => a -> a -> a
mappend Hypothesis a
top (Hypothesis a -> Hypothesis a) -> Hypothesis a -> Hypothesis a
forall a b. (a -> b) -> a -> b
$ [HyInfo a] -> Hypothesis a
forall a. [HyInfo a] -> Hypothesis a
Hypothesis ([HyInfo a] -> Hypothesis a)
-> ([HyInfo a] -> [HyInfo a]) -> [HyInfo a] -> Hypothesis a
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (HyInfo a -> Bool) -> [HyInfo a] -> [HyInfo a]
forall a. (a -> Bool) -> [a] -> [a]
filter ((OccName -> Set OccName -> Bool) -> Set OccName -> OccName -> Bool
forall a b c. (a -> b -> c) -> b -> a -> c
flip OccName -> Set OccName -> Bool
forall a. Ord a => a -> Set a -> Bool
S.notMember Set OccName
bound (OccName -> Bool) -> (HyInfo a -> OccName) -> HyInfo a -> Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. HyInfo a -> OccName
forall a. HyInfo a -> OccName
hi_name) ([HyInfo a] -> Hypothesis a) -> [HyInfo a] -> Hypothesis a
forall a b. (a -> b) -> a -> b
$ Hypothesis a -> [HyInfo a]
forall a. Hypothesis a -> [HyInfo a]
unHypothesis Hypothesis a
x
getRhsPosVals
:: Tracked age RealSrcSpan
-> Tracked age TypecheckedSource
-> Hypothesis CType
getRhsPosVals :: Tracked age RealSrcSpan
-> Tracked age (LHsBinds GhcTc) -> Hypothesis CType
getRhsPosVals (Tracked age RealSrcSpan -> RealSrcSpan
forall (age :: Age) a. Tracked age a -> a
unTrack -> RealSrcSpan
rss) (Tracked age (LHsBinds GhcTc) -> LHsBinds GhcTc
forall (age :: Age) a. Tracked age a -> a
unTrack -> LHsBinds GhcTc
tcs)
= (Hypothesis CType -> Hypothesis CType -> Hypothesis CType)
-> GenericQ (Hypothesis CType)
-> LHsBinds GhcTc
-> Hypothesis CType
forall r. (r -> r -> r) -> GenericQ r -> GenericQ r
everything Hypothesis CType -> Hypothesis CType -> Hypothesis CType
forall a. Semigroup a => a -> a -> a
(<>) (Hypothesis CType
-> (Match GhcTc (LHsExpr GhcTc) -> Hypothesis CType)
-> a
-> Hypothesis CType
forall a b r. (Typeable a, Typeable b) => r -> (b -> r) -> a -> r
mkQ Hypothesis CType
forall a. Monoid a => a
mempty ((Match GhcTc (LHsExpr GhcTc) -> Hypothesis CType)
-> a -> Hypothesis CType)
-> (Match GhcTc (LHsExpr GhcTc) -> Hypothesis CType)
-> a
-> Hypothesis CType
forall a b. (a -> b) -> a -> b
$ \case
TopLevelRHS OccName
name [PatCompat GhcTc]
ps
(L (RealSrcSpan RealSrcSpan
span Maybe BufSpan
_)
(HsVar XVar GhcTc
_ (L SrcSpan
_ IdP GhcTc
hole)))
HsLocalBindsLR GhcTc GhcTc
_
| RealSrcSpan -> RealSrcSpan -> Bool
containsSpan RealSrcSpan
rss RealSrcSpan
span
, OccName -> Bool
isHole (OccName -> Bool) -> OccName -> Bool
forall a b. (a -> b) -> a -> b
$ Id -> OccName
forall name. HasOccName name => name -> OccName
occName IdP GhcTc
Id
hole
-> (State Int (Hypothesis CType) -> Int -> Hypothesis CType)
-> Int -> State Int (Hypothesis CType) -> Hypothesis CType
forall a b c. (a -> b -> c) -> b -> a -> c
flip State Int (Hypothesis CType) -> Int -> Hypothesis CType
forall s a. State s a -> s -> a
evalState Int
0 (State Int (Hypothesis CType) -> Hypothesis CType)
-> State Int (Hypothesis CType) -> Hypothesis CType
forall a b. (a -> b) -> a -> b
$ OccName -> [PatCompat GhcTc] -> State Int (Hypothesis CType)
buildTopLevelHypothesis OccName
name [PatCompat GhcTc]
ps
Match GhcTc (LHsExpr GhcTc)
_ -> Hypothesis CType
forall a. Monoid a => a
mempty
) LHsBinds GhcTc
tcs
buildTopLevelHypothesis
:: OccName
-> [PatCompat GhcTc]
-> State Int (Hypothesis CType)
buildTopLevelHypothesis :: OccName -> [PatCompat GhcTc] -> State Int (Hypothesis CType)
buildTopLevelHypothesis OccName
name [PatCompat GhcTc]
ps = do
([Hypothesis CType] -> Hypothesis CType)
-> StateT Int Identity [Hypothesis CType]
-> State Int (Hypothesis CType)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap [Hypothesis CType] -> Hypothesis CType
forall a. Monoid a => [a] -> a
mconcat (StateT Int Identity [Hypothesis CType]
-> State Int (Hypothesis CType))
-> StateT Int Identity [Hypothesis CType]
-> State Int (Hypothesis CType)
forall a b. (a -> b) -> a -> b
$
[(Int, Located (Pat GhcTc))]
-> ((Int, Located (Pat GhcTc)) -> State Int (Hypothesis CType))
-> StateT Int Identity [Hypothesis CType]
forall (t :: * -> *) (f :: * -> *) a b.
(Traversable t, Applicative f) =>
t a -> (a -> f b) -> f (t b)
for ([Int] -> [Located (Pat GhcTc)] -> [(Int, Located (Pat GhcTc))]
forall a b. [a] -> [b] -> [(a, b)]
zip [Int
0..] [PatCompat GhcTc]
[Located (Pat GhcTc)]
ps) (((Int, Located (Pat GhcTc)) -> State Int (Hypothesis CType))
-> StateT Int Identity [Hypothesis CType])
-> ((Int, Located (Pat GhcTc)) -> State Int (Hypothesis CType))
-> StateT Int Identity [Hypothesis CType]
forall a b. (a -> b) -> a -> b
$ \(Int
ix, Located (Pat GhcTc)
p) ->
Provenance -> PatCompat GhcTc -> State Int (Hypothesis CType)
buildPatHy (OccName -> Int -> Int -> Provenance
TopLevelArgPrv OccName
name Int
ix (Int -> Provenance) -> Int -> Provenance
forall a b. (a -> b) -> a -> b
$ [Located (Pat GhcTc)] -> Int
forall (t :: * -> *) a. Foldable t => t a -> Int
length [PatCompat GhcTc]
[Located (Pat GhcTc)]
ps) PatCompat GhcTc
Located (Pat GhcTc)
p
buildPatHy :: Provenance -> PatCompat GhcTc -> State Int (Hypothesis CType)
buildPatHy :: Provenance -> PatCompat GhcTc -> State Int (Hypothesis CType)
buildPatHy Provenance
prov (PatCompat GhcTc -> Pat GhcTc
forall p. PatCompattable p => PatCompat p -> Pat p
fromPatCompat -> Pat GhcTc
p0) =
case Pat GhcTc
p0 of
VarPat XVarPat GhcTc
_ GenLocated SrcSpan (IdP GhcTc)
x -> Hypothesis CType -> State Int (Hypothesis CType)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Hypothesis CType -> State Int (Hypothesis CType))
-> Hypothesis CType -> State Int (Hypothesis CType)
forall a b. (a -> b) -> a -> b
$ Id -> Provenance -> Hypothesis CType
mkIdHypothesis (Located Id -> SrcSpanLess (Located Id)
forall a. HasSrcSpan a => a -> SrcSpanLess a
unLoc GenLocated SrcSpan (IdP GhcTc)
Located Id
x) Provenance
prov
LazyPat XLazyPat GhcTc
_ PatCompat GhcTc
p -> Provenance -> PatCompat GhcTc -> State Int (Hypothesis CType)
buildPatHy Provenance
prov PatCompat GhcTc
p
AsPat XAsPat GhcTc
_ GenLocated SrcSpan (IdP GhcTc)
x PatCompat GhcTc
p -> do
Hypothesis CType
hy' <- Provenance -> PatCompat GhcTc -> State Int (Hypothesis CType)
buildPatHy Provenance
prov PatCompat GhcTc
p
Hypothesis CType -> State Int (Hypothesis CType)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Hypothesis CType -> State Int (Hypothesis CType))
-> Hypothesis CType -> State Int (Hypothesis CType)
forall a b. (a -> b) -> a -> b
$ Id -> Provenance -> Hypothesis CType
mkIdHypothesis (Located Id -> SrcSpanLess (Located Id)
forall a. HasSrcSpan a => a -> SrcSpanLess a
unLoc GenLocated SrcSpan (IdP GhcTc)
Located Id
x) Provenance
prov Hypothesis CType -> Hypothesis CType -> Hypothesis CType
forall a. Semigroup a => a -> a -> a
<> Hypothesis CType
hy'
ParPat XParPat GhcTc
_ PatCompat GhcTc
p -> Provenance -> PatCompat GhcTc -> State Int (Hypothesis CType)
buildPatHy Provenance
prov PatCompat GhcTc
p
BangPat XBangPat GhcTc
_ PatCompat GhcTc
p -> Provenance -> PatCompat GhcTc -> State Int (Hypothesis CType)
buildPatHy Provenance
prov PatCompat GhcTc
p
ViewPat XViewPat GhcTc
_ LHsExpr GhcTc
_ PatCompat GhcTc
p -> Provenance -> PatCompat GhcTc -> State Int (Hypothesis CType)
buildPatHy Provenance
prov PatCompat GhcTc
p
ListPat XListPat GhcTc
_ [] -> Hypothesis CType -> State Int (Hypothesis CType)
forall (f :: * -> *) a. Applicative f => a -> f a
pure Hypothesis CType
forall a. Monoid a => a
mempty
ListPat x :: XListPat GhcTc
x@(ListPatTc ty _) (PatCompat GhcTc
p : [PatCompat GhcTc]
ps) ->
Provenance
-> ConLike
-> [Type]
-> [(Int, PatCompat GhcTc)]
-> State Int (Hypothesis CType)
mkDerivedConHypothesis Provenance
prov (DataCon -> ConLike
RealDataCon DataCon
consDataCon) [Type
ty]
[ (Int
0, PatCompat GhcTc
p)
, (Int
1, Pat GhcTc -> PatCompat GhcTc
forall p. PatCompattable p => Pat p -> PatCompat p
toPatCompat (Pat GhcTc -> PatCompat GhcTc) -> Pat GhcTc -> PatCompat GhcTc
forall a b. (a -> b) -> a -> b
$ XListPat GhcTc -> [PatCompat GhcTc] -> Pat GhcTc
forall p. XListPat p -> [LPat p] -> Pat p
ListPat XListPat GhcTc
x [PatCompat GhcTc]
ps)
]
TuplePat XTuplePat GhcTc
tys [PatCompat GhcTc]
pats Boxity
boxity ->
Provenance
-> ConLike
-> [Type]
-> [(Int, PatCompat GhcTc)]
-> State Int (Hypothesis CType)
mkDerivedConHypothesis
Provenance
prov
(DataCon -> ConLike
RealDataCon (DataCon -> ConLike) -> DataCon -> ConLike
forall a b. (a -> b) -> a -> b
$ Boxity -> Int -> DataCon
tupleDataCon Boxity
boxity (Int -> DataCon) -> Int -> DataCon
forall a b. (a -> b) -> a -> b
$ [Located (Pat GhcTc)] -> Int
forall (t :: * -> *) a. Foldable t => t a -> Int
length [PatCompat GhcTc]
[Located (Pat GhcTc)]
pats)
[Type]
XTuplePat GhcTc
tys
([(Int, PatCompat GhcTc)] -> State Int (Hypothesis CType))
-> [(Int, PatCompat GhcTc)] -> State Int (Hypothesis CType)
forall a b. (a -> b) -> a -> b
$ [Int] -> [Located (Pat GhcTc)] -> [(Int, Located (Pat GhcTc))]
forall a b. [a] -> [b] -> [(a, b)]
zip [Int
0.. ] [PatCompat GhcTc]
[Located (Pat GhcTc)]
pats
#if __GLASGOW_HASKELL__ >= 900
ConPat {pat_con = (L _ con), pat_con_ext = ConPatTc {cpt_arg_tys = args}, pat_args = f} ->
#else
ConPatOut {pat_con :: forall p. Pat p -> Located ConLike
pat_con = (L SrcSpan
_ ConLike
con), pat_arg_tys :: forall p. Pat p -> [Type]
pat_arg_tys = [Type]
args, pat_args :: forall p. Pat p -> HsConPatDetails p
pat_args = HsConPatDetails GhcTc
f} ->
#endif
case HsConPatDetails GhcTc
f of
PrefixCon [PatCompat GhcTc]
l_pgt ->
Provenance
-> ConLike
-> [Type]
-> [(Int, PatCompat GhcTc)]
-> State Int (Hypothesis CType)
mkDerivedConHypothesis Provenance
prov ConLike
con [Type]
args ([(Int, PatCompat GhcTc)] -> State Int (Hypothesis CType))
-> [(Int, PatCompat GhcTc)] -> State Int (Hypothesis CType)
forall a b. (a -> b) -> a -> b
$ [Int] -> [Located (Pat GhcTc)] -> [(Int, Located (Pat GhcTc))]
forall a b. [a] -> [b] -> [(a, b)]
zip [Int
0..] [PatCompat GhcTc]
[Located (Pat GhcTc)]
l_pgt
InfixCon PatCompat GhcTc
pgt PatCompat GhcTc
pgt5 ->
Provenance
-> ConLike
-> [Type]
-> [(Int, PatCompat GhcTc)]
-> State Int (Hypothesis CType)
mkDerivedConHypothesis Provenance
prov ConLike
con [Type]
args ([(Int, PatCompat GhcTc)] -> State Int (Hypothesis CType))
-> [(Int, PatCompat GhcTc)] -> State Int (Hypothesis CType)
forall a b. (a -> b) -> a -> b
$ [Int] -> [Located (Pat GhcTc)] -> [(Int, Located (Pat GhcTc))]
forall a b. [a] -> [b] -> [(a, b)]
zip [Int
0..] [PatCompat GhcTc
Located (Pat GhcTc)
pgt, PatCompat GhcTc
Located (Pat GhcTc)
pgt5]
RecCon HsRecFields GhcTc (PatCompat GhcTc)
r ->
Provenance
-> ConLike
-> [Type]
-> HsRecFields GhcTc (PatCompat GhcTc)
-> State Int (Hypothesis CType)
mkDerivedRecordHypothesis Provenance
prov ConLike
con [Type]
args HsRecFields GhcTc (PatCompat GhcTc)
r
#if __GLASGOW_HASKELL__ >= 808
SigPat XSigPat GhcTc
_ PatCompat GhcTc
p LHsSigWcType (NoGhcTc GhcTc)
_ -> Provenance -> PatCompat GhcTc -> State Int (Hypothesis CType)
buildPatHy Provenance
prov PatCompat GhcTc
p
#endif
#if __GLASGOW_HASKELL__ == 808
XPat p -> buildPatHy prov $ unLoc p
#endif
Pat GhcTc
_ -> Hypothesis CType -> State Int (Hypothesis CType)
forall (f :: * -> *) a. Applicative f => a -> f a
pure Hypothesis CType
forall a. Monoid a => a
mempty
mkDerivedRecordHypothesis
:: Provenance
-> ConLike
-> [Type]
-> HsRecFields GhcTc (PatCompat GhcTc)
-> State Int (Hypothesis CType)
mkDerivedRecordHypothesis :: Provenance
-> ConLike
-> [Type]
-> HsRecFields GhcTc (PatCompat GhcTc)
-> State Int (Hypothesis CType)
mkDerivedRecordHypothesis Provenance
prov ConLike
dc [Type]
args (HsRecFields ((LHsRecField GhcTc (Located (Pat GhcTc))
-> HsRecField' (FieldOcc GhcTc) (Located (Pat GhcTc)))
-> [LHsRecField GhcTc (Located (Pat GhcTc))]
-> [HsRecField' (FieldOcc GhcTc) (Located (Pat GhcTc))]
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap LHsRecField GhcTc (Located (Pat GhcTc))
-> HsRecField' (FieldOcc GhcTc) (Located (Pat GhcTc))
forall a. HasSrcSpan a => a -> SrcSpanLess a
unLoc -> [HsRecField' (FieldOcc GhcTc) (Located (Pat GhcTc))]
fs) Maybe (Located Int)
_)
| Just [(OccName, CType)]
rec_fields <- ConLike -> Maybe [(OccName, CType)]
getRecordFields ConLike
dc
= do
let field_lookup :: Map FastString Int
field_lookup = [(FastString, Int)] -> Map FastString Int
forall k a. Ord k => [(k, a)] -> Map k a
M.fromList ([(FastString, Int)] -> Map FastString Int)
-> [(FastString, Int)] -> Map FastString Int
forall a b. (a -> b) -> a -> b
$ [FastString] -> [Int] -> [(FastString, Int)]
forall a b. [a] -> [b] -> [(a, b)]
zip (((OccName, CType) -> FastString)
-> [(OccName, CType)] -> [FastString]
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap (OccName -> FastString
occNameFS (OccName -> FastString)
-> ((OccName, CType) -> OccName) -> (OccName, CType) -> FastString
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (OccName, CType) -> OccName
forall a b. (a, b) -> a
fst) [(OccName, CType)]
rec_fields) [Int
0..]
Provenance
-> ConLike
-> [Type]
-> [(Int, PatCompat GhcTc)]
-> State Int (Hypothesis CType)
mkDerivedConHypothesis Provenance
prov ConLike
dc [Type]
args ([(Int, PatCompat GhcTc)] -> State Int (Hypothesis CType))
-> [(Int, PatCompat GhcTc)] -> State Int (Hypothesis CType)
forall a b. (a -> b) -> a -> b
$ [HsRecField' (FieldOcc GhcTc) (Located (Pat GhcTc))]
fs [HsRecField' (FieldOcc GhcTc) (Located (Pat GhcTc))]
-> (HsRecField' (FieldOcc GhcTc) (Located (Pat GhcTc))
-> (Int, Located (Pat GhcTc)))
-> [(Int, Located (Pat GhcTc))]
forall (f :: * -> *) a b. Functor f => f a -> (a -> b) -> f b
<&> \(HsRecField (L SrcSpan
_ FieldOcc GhcTc
rec_occ) Located (Pat GhcTc)
p Bool
_) ->
( Map FastString Int
field_lookup Map FastString Int -> FastString -> Int
forall k a. Ord k => Map k a -> k -> a
M.! (OccName -> FastString
occNameFS (OccName -> FastString) -> OccName -> FastString
forall a b. (a -> b) -> a -> b
$ RdrName -> OccName
forall name. HasOccName name => name -> OccName
occName (RdrName -> OccName) -> RdrName -> OccName
forall a b. (a -> b) -> a -> b
$ Located RdrName -> SrcSpanLess (Located RdrName)
forall a. HasSrcSpan a => a -> SrcSpanLess a
unLoc (Located RdrName -> SrcSpanLess (Located RdrName))
-> Located RdrName -> SrcSpanLess (Located RdrName)
forall a b. (a -> b) -> a -> b
$ FieldOcc GhcTc -> Located RdrName
forall pass. FieldOcc pass -> Located RdrName
rdrNameFieldOcc FieldOcc GhcTc
rec_occ)
, Located (Pat GhcTc)
p
)
mkDerivedRecordHypothesis Provenance
_ ConLike
_ [Type]
_ HsRecFields GhcTc (PatCompat GhcTc)
_ =
String -> State Int (Hypothesis CType)
forall a. HasCallStack => String -> a
error String
"impossible! using record pattern on something that isn't a record"
mkFakeVar :: State Int OccName
mkFakeVar :: State Int OccName
mkFakeVar = do
Int
i <- StateT Int Identity Int
forall s (m :: * -> *). MonadState s m => m s
get
Int -> StateT Int Identity BufSpan
forall s (m :: * -> *). MonadState s m => s -> m BufSpan
put (Int -> StateT Int Identity BufSpan)
-> Int -> StateT Int Identity BufSpan
forall a b. (a -> b) -> a -> b
$ Int
i Int -> Int -> Int
forall a. Num a => a -> a -> a
+ Int
1
OccName -> State Int OccName
forall (f :: * -> *) a. Applicative f => a -> f a
pure (OccName -> State Int OccName) -> OccName -> State Int OccName
forall a b. (a -> b) -> a -> b
$ String -> OccName
mkVarOcc (String -> OccName) -> String -> OccName
forall a b. (a -> b) -> a -> b
$ String
"_" String -> String -> String
forall a. Semigroup a => a -> a -> a
<> Int -> String
forall a. Show a => a -> String
show Int
i
mkDerivedConHypothesis
:: Provenance
-> ConLike
-> [Type]
-> [(Int, PatCompat GhcTc)]
-> State Int (Hypothesis CType)
mkDerivedConHypothesis :: Provenance
-> ConLike
-> [Type]
-> [(Int, PatCompat GhcTc)]
-> State Int (Hypothesis CType)
mkDerivedConHypothesis Provenance
prov ConLike
dc [Type]
args [(Int, PatCompat GhcTc)]
ps = do
OccName
var <- State Int OccName
mkFakeVar
Hypothesis CType
hy' <- ([Hypothesis CType] -> Hypothesis CType)
-> StateT Int Identity [Hypothesis CType]
-> State Int (Hypothesis CType)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap [Hypothesis CType] -> Hypothesis CType
forall a. Monoid a => [a] -> a
mconcat (StateT Int Identity [Hypothesis CType]
-> State Int (Hypothesis CType))
-> StateT Int Identity [Hypothesis CType]
-> State Int (Hypothesis CType)
forall a b. (a -> b) -> a -> b
$
[(Int, Located (Pat GhcTc))]
-> ((Int, Located (Pat GhcTc)) -> State Int (Hypothesis CType))
-> StateT Int Identity [Hypothesis CType]
forall (t :: * -> *) (f :: * -> *) a b.
(Traversable t, Applicative f) =>
t a -> (a -> f b) -> f (t b)
for [(Int, PatCompat GhcTc)]
[(Int, Located (Pat GhcTc))]
ps (((Int, Located (Pat GhcTc)) -> State Int (Hypothesis CType))
-> StateT Int Identity [Hypothesis CType])
-> ((Int, Located (Pat GhcTc)) -> State Int (Hypothesis CType))
-> StateT Int Identity [Hypothesis CType]
forall a b. (a -> b) -> a -> b
$ \(Int
ix, Located (Pat GhcTc)
p) -> do
let prov' :: Provenance
prov' = PatVal -> Provenance
PatternMatchPrv
(PatVal -> Provenance) -> PatVal -> Provenance
forall a b. (a -> b) -> a -> b
$ Maybe OccName -> Set OccName -> Uniquely ConLike -> Int -> PatVal
PatVal (OccName -> Maybe OccName
forall a. a -> Maybe a
Just OccName
var)
(OccName -> Set OccName
forall a. a -> Set a
S.singleton OccName
var Set OccName -> Set OccName -> Set OccName
forall a. Semigroup a => a -> a -> a
<> Provenance -> Set OccName
provAncestryOf Provenance
prov)
(ConLike -> Uniquely ConLike
forall a. a -> Uniquely a
Uniquely ConLike
dc)
Int
ix
Provenance -> PatCompat GhcTc -> State Int (Hypothesis CType)
buildPatHy Provenance
prov' PatCompat GhcTc
Located (Pat GhcTc)
p
Hypothesis CType -> State Int (Hypothesis CType)
forall (f :: * -> *) a. Applicative f => a -> f a
pure
(Hypothesis CType -> State Int (Hypothesis CType))
-> Hypothesis CType -> State Int (Hypothesis CType)
forall a b. (a -> b) -> a -> b
$ Hypothesis CType -> Hypothesis CType -> Hypothesis CType
forall a. Monoid a => a -> a -> a
mappend Hypothesis CType
hy'
(Hypothesis CType -> Hypothesis CType)
-> Hypothesis CType -> Hypothesis CType
forall a b. (a -> b) -> a -> b
$ [HyInfo CType] -> Hypothesis CType
forall a. [HyInfo a] -> Hypothesis a
Hypothesis
([HyInfo CType] -> Hypothesis CType)
-> [HyInfo CType] -> Hypothesis CType
forall a b. (a -> b) -> a -> b
$ HyInfo CType -> [HyInfo CType]
forall (f :: * -> *) a. Applicative f => a -> f a
pure
(HyInfo CType -> [HyInfo CType]) -> HyInfo CType -> [HyInfo CType]
forall a b. (a -> b) -> a -> b
$ OccName -> Provenance -> CType -> HyInfo CType
forall a. OccName -> Provenance -> a -> HyInfo a
HyInfo OccName
var (DisallowReason -> Provenance -> Provenance
DisallowedPrv DisallowReason
AlreadyDestructed Provenance
prov)
(CType -> HyInfo CType) -> CType -> HyInfo CType
forall a b. (a -> b) -> a -> b
$ Type -> CType
CType
(Type -> CType) -> Type -> CType
forall a b. (a -> b) -> a -> b
$ ConLike -> [Type] -> Type
conLikeResTy ConLike
dc [Type]
args
mkIdHypothesis :: Id -> Provenance -> Hypothesis CType
mkIdHypothesis :: Id -> Provenance -> Hypothesis CType
mkIdHypothesis (Id -> (OccName, CType)
splitId -> (OccName
name, CType
ty)) Provenance
prov =
[HyInfo CType] -> Hypothesis CType
forall a. [HyInfo a] -> Hypothesis a
Hypothesis ([HyInfo CType] -> Hypothesis CType)
-> [HyInfo CType] -> Hypothesis CType
forall a b. (a -> b) -> a -> b
$ HyInfo CType -> [HyInfo CType]
forall (f :: * -> *) a. Applicative f => a -> f a
pure (HyInfo CType -> [HyInfo CType]) -> HyInfo CType -> [HyInfo CType]
forall a b. (a -> b) -> a -> b
$ OccName -> Provenance -> CType -> HyInfo CType
forall a. OccName -> Provenance -> a -> HyInfo a
HyInfo OccName
name Provenance
prov CType
ty
isRhsHoleWithoutWhere
:: Tracked age RealSrcSpan
-> Tracked age TypecheckedSource
-> Bool
isRhsHoleWithoutWhere :: Tracked age RealSrcSpan -> Tracked age (LHsBinds GhcTc) -> Bool
isRhsHoleWithoutWhere (Tracked age RealSrcSpan -> RealSrcSpan
forall (age :: Age) a. Tracked age a -> a
unTrack -> RealSrcSpan
rss) (Tracked age (LHsBinds GhcTc) -> LHsBinds GhcTc
forall (age :: Age) a. Tracked age a -> a
unTrack -> LHsBinds GhcTc
tcs) =
(Bool -> Bool -> Bool) -> GenericQ Bool -> LHsBinds GhcTc -> Bool
forall r. (r -> r -> r) -> GenericQ r -> GenericQ r
everything Bool -> Bool -> Bool
(||) (Bool -> (Match GhcTc (LHsExpr GhcTc) -> Bool) -> a -> Bool
forall a b r. (Typeable a, Typeable b) => r -> (b -> r) -> a -> r
mkQ Bool
False ((Match GhcTc (LHsExpr GhcTc) -> Bool) -> a -> Bool)
-> (Match GhcTc (LHsExpr GhcTc) -> Bool) -> a -> Bool
forall a b. (a -> b) -> a -> b
$ \case
TopLevelRHS OccName
_ [PatCompat GhcTc]
_
(L (RealSrcSpan RealSrcSpan
span Maybe BufSpan
_) HsExpr GhcTc
_)
(EmptyLocalBinds XEmptyLocalBinds GhcTc GhcTc
_) -> RealSrcSpan -> RealSrcSpan -> Bool
containsSpan RealSrcSpan
rss RealSrcSpan
span
Match GhcTc (LHsExpr GhcTc)
_ -> Bool
False
) LHsBinds GhcTc
tcs
ufmSeverity :: UserFacingMessage -> MessageType
ufmSeverity :: UserFacingMessage -> MessageType
ufmSeverity UserFacingMessage
NotEnoughGas = MessageType
MtInfo
ufmSeverity UserFacingMessage
TacticErrors = MessageType
MtError
ufmSeverity UserFacingMessage
TimedOut = MessageType
MtInfo
ufmSeverity UserFacingMessage
NothingToDo = MessageType
MtInfo
ufmSeverity (InfrastructureError Text
_) = MessageType
MtError
mkShowMessageParams :: UserFacingMessage -> ShowMessageParams
mkShowMessageParams :: UserFacingMessage -> ShowMessageParams
mkShowMessageParams UserFacingMessage
ufm = MessageType -> Text -> ShowMessageParams
ShowMessageParams (UserFacingMessage -> MessageType
ufmSeverity UserFacingMessage
ufm) (Text -> ShowMessageParams) -> Text -> ShowMessageParams
forall a b. (a -> b) -> a -> b
$ String -> Text
T.pack (String -> Text) -> String -> Text
forall a b. (a -> b) -> a -> b
$ UserFacingMessage -> String
forall a. Show a => a -> String
show UserFacingMessage
ufm
showLspMessage :: MonadLsp cfg m => ShowMessageParams -> m ()
showLspMessage :: ShowMessageParams -> m BufSpan
showLspMessage = SServerMethod 'WindowShowMessage
-> MessageParams 'WindowShowMessage -> m BufSpan
forall (m :: Method 'FromServer 'Notification) (f :: * -> *)
config.
MonadLsp config f =>
SServerMethod m -> MessageParams m -> f BufSpan
sendNotification SServerMethod 'WindowShowMessage
SWindowShowMessage
data WriteDiagnostics = WriteDiagnostics
deriving (WriteDiagnostics -> WriteDiagnostics -> Bool
(WriteDiagnostics -> WriteDiagnostics -> Bool)
-> (WriteDiagnostics -> WriteDiagnostics -> Bool)
-> Eq WriteDiagnostics
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: WriteDiagnostics -> WriteDiagnostics -> Bool
$c/= :: WriteDiagnostics -> WriteDiagnostics -> Bool
== :: WriteDiagnostics -> WriteDiagnostics -> Bool
$c== :: WriteDiagnostics -> WriteDiagnostics -> Bool
Eq, Int -> WriteDiagnostics -> String -> String
[WriteDiagnostics] -> String -> String
WriteDiagnostics -> String
(Int -> WriteDiagnostics -> String -> String)
-> (WriteDiagnostics -> String)
-> ([WriteDiagnostics] -> String -> String)
-> Show WriteDiagnostics
forall a.
(Int -> a -> String -> String)
-> (a -> String) -> ([a] -> String -> String) -> Show a
showList :: [WriteDiagnostics] -> String -> String
$cshowList :: [WriteDiagnostics] -> String -> String
show :: WriteDiagnostics -> String
$cshow :: WriteDiagnostics -> String
showsPrec :: Int -> WriteDiagnostics -> String -> String
$cshowsPrec :: Int -> WriteDiagnostics -> String -> String
Show, Typeable, (forall x. WriteDiagnostics -> Rep WriteDiagnostics x)
-> (forall x. Rep WriteDiagnostics x -> WriteDiagnostics)
-> Generic WriteDiagnostics
forall x. Rep WriteDiagnostics x -> WriteDiagnostics
forall x. WriteDiagnostics -> Rep WriteDiagnostics x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep WriteDiagnostics x -> WriteDiagnostics
$cfrom :: forall x. WriteDiagnostics -> Rep WriteDiagnostics x
Generic)
instance Hashable WriteDiagnostics
instance NFData WriteDiagnostics
type instance RuleResult WriteDiagnostics = ()
data GetMetaprograms = GetMetaprograms
deriving (GetMetaprograms -> GetMetaprograms -> Bool
(GetMetaprograms -> GetMetaprograms -> Bool)
-> (GetMetaprograms -> GetMetaprograms -> Bool)
-> Eq GetMetaprograms
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetMetaprograms -> GetMetaprograms -> Bool
$c/= :: GetMetaprograms -> GetMetaprograms -> Bool
== :: GetMetaprograms -> GetMetaprograms -> Bool
$c== :: GetMetaprograms -> GetMetaprograms -> Bool
Eq, Int -> GetMetaprograms -> String -> String
[GetMetaprograms] -> String -> String
GetMetaprograms -> String
(Int -> GetMetaprograms -> String -> String)
-> (GetMetaprograms -> String)
-> ([GetMetaprograms] -> String -> String)
-> Show GetMetaprograms
forall a.
(Int -> a -> String -> String)
-> (a -> String) -> ([a] -> String -> String) -> Show a
showList :: [GetMetaprograms] -> String -> String
$cshowList :: [GetMetaprograms] -> String -> String
show :: GetMetaprograms -> String
$cshow :: GetMetaprograms -> String
showsPrec :: Int -> GetMetaprograms -> String -> String
$cshowsPrec :: Int -> GetMetaprograms -> String -> String
Show, Typeable, (forall x. GetMetaprograms -> Rep GetMetaprograms x)
-> (forall x. Rep GetMetaprograms x -> GetMetaprograms)
-> Generic GetMetaprograms
forall x. Rep GetMetaprograms x -> GetMetaprograms
forall x. GetMetaprograms -> Rep GetMetaprograms x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep GetMetaprograms x -> GetMetaprograms
$cfrom :: forall x. GetMetaprograms -> Rep GetMetaprograms x
Generic)
instance Hashable GetMetaprograms
instance NFData GetMetaprograms
type instance RuleResult GetMetaprograms = [(Tracked 'Current RealSrcSpan, T.Text)]
wingmanRules :: PluginId -> Rules ()
wingmanRules :: PluginId -> Rules BufSpan
wingmanRules PluginId
plId = do
(WriteDiagnostics
-> NormalizedFilePath -> Action (IdeResult BufSpan))
-> Rules BufSpan
forall k v.
IdeRule k v =>
(k -> NormalizedFilePath -> Action (IdeResult v)) -> Rules BufSpan
define ((WriteDiagnostics
-> NormalizedFilePath -> Action (IdeResult BufSpan))
-> Rules BufSpan)
-> (WriteDiagnostics
-> NormalizedFilePath -> Action (IdeResult BufSpan))
-> Rules BufSpan
forall a b. (a -> b) -> a -> b
$ \WriteDiagnostics
WriteDiagnostics NormalizedFilePath
nfp ->
KeyNameProxy "hole_severity"
-> PluginId
-> Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
-> Action (ToHsType ('TEnum (Maybe DiagnosticSeverity)))
forall (s :: Symbol) (k :: PropertyKey) (t :: PropertyType)
(r :: [PropertyKey]).
HasProperty s k t r =>
KeyNameProxy s -> PluginId -> Properties r -> Action (ToHsType t)
usePropertyAction IsLabel "hole_severity" (KeyNameProxy "hole_severity")
KeyNameProxy "hole_severity"
#hole_severity PluginId
plId Properties
'[ 'PropertyKey
"hole_severity" ('TEnum (Maybe DiagnosticSeverity)),
'PropertyKey "max_use_ctor_actions" 'TInteger,
'PropertyKey "timeout_duration" 'TInteger,
'PropertyKey "auto_gas" 'TInteger,
'PropertyKey "proofstate_styling" 'TBoolean]
properties Action (Maybe DiagnosticSeverity)
-> (Maybe DiagnosticSeverity -> Action (IdeResult BufSpan))
-> Action (IdeResult BufSpan)
forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b
>>= \case
Maybe DiagnosticSeverity
Nothing -> IdeResult BufSpan -> Action (IdeResult BufSpan)
forall (f :: * -> *) a. Applicative f => a -> f a
pure ([(NormalizedFilePath, ShowDiagnostic, Diagnostic)]
forall a. Monoid a => a
mempty, BufSpan -> Maybe BufSpan
forall a. a -> Maybe a
Just ())
Just DiagnosticSeverity
severity ->
GetParsedModule
-> NormalizedFilePath -> Action (Maybe ParsedModule)
forall k v.
IdeRule k v =>
k -> NormalizedFilePath -> Action (Maybe v)
use GetParsedModule
GetParsedModule NormalizedFilePath
nfp Action (Maybe ParsedModule)
-> (Maybe ParsedModule -> Action (IdeResult BufSpan))
-> Action (IdeResult BufSpan)
forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b
>>= \case
Maybe ParsedModule
Nothing ->
IdeResult BufSpan -> Action (IdeResult BufSpan)
forall (f :: * -> *) a. Applicative f => a -> f a
pure ([], Maybe BufSpan
forall a. Maybe a
Nothing)
Just ParsedModule
pm -> do
let holes :: [Range]
holes :: [Range]
holes =
([Range] -> [Range] -> [Range])
-> GenericQ [Range] -> GenericQ [Range]
forall r. (r -> r -> r) -> GenericQ r -> GenericQ r
everything [Range] -> [Range] -> [Range]
forall a. Semigroup a => a -> a -> a
(<>)
([Range]
-> (GenLocated SrcSpan (HsExpr GhcPs) -> [Range]) -> a -> [Range]
forall a b r. (Typeable a, Typeable b) => r -> (b -> r) -> a -> r
mkQ [Range]
forall a. Monoid a => a
mempty ((GenLocated SrcSpan (HsExpr GhcPs) -> [Range]) -> a -> [Range])
-> (GenLocated SrcSpan (HsExpr GhcPs) -> [Range]) -> a -> [Range]
forall a b. (a -> b) -> a -> b
$ \case
L SrcSpan
span (HsVar XVar GhcPs
_ (L SrcSpan
_ IdP GhcPs
name))
| OccName -> Bool
isHole (RdrName -> OccName
forall name. HasOccName name => name -> OccName
occName IdP GhcPs
RdrName
name) ->
Maybe Range -> [Range]
forall a. Maybe a -> [a]
maybeToList (Maybe Range -> [Range]) -> Maybe Range -> [Range]
forall a b. (a -> b) -> a -> b
$ SrcSpan -> Maybe Range
srcSpanToRange SrcSpan
span
#if __GLASGOW_HASKELL__ >= 900
L span (HsUnboundVar _ occ)
#else
L SrcSpan
span (HsUnboundVar XUnboundVar GhcPs
_ (TrueExprHole OccName
occ))
#endif
| OccName -> Bool
isHole OccName
occ ->
Maybe Range -> [Range]
forall a. Maybe a -> [a]
maybeToList (Maybe Range -> [Range]) -> Maybe Range -> [Range]
forall a b. (a -> b) -> a -> b
$ SrcSpan -> Maybe Range
srcSpanToRange SrcSpan
span
#if __GLASGOW_HASKELL__ <= 808
L span (EWildPat _) ->
maybeToList $ srcSpanToRange span
#endif
(GenLocated SrcSpan (HsExpr GhcPs)
_ :: LHsExpr GhcPs) -> [Range]
forall a. Monoid a => a
mempty
) (ParsedSource -> [Range]) -> ParsedSource -> [Range]
forall a b. (a -> b) -> a -> b
$ ParsedModule -> ParsedSource
pm_parsed_source ParsedModule
pm
IdeResult BufSpan -> Action (IdeResult BufSpan)
forall (f :: * -> *) a. Applicative f => a -> f a
pure
( (Range -> (NormalizedFilePath, ShowDiagnostic, Diagnostic))
-> [Range] -> [(NormalizedFilePath, ShowDiagnostic, Diagnostic)]
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap (\Range
r -> (NormalizedFilePath
nfp, ShowDiagnostic
ShowDiag, DiagnosticSeverity -> Range -> Diagnostic
mkDiagnostic DiagnosticSeverity
severity Range
r)) [Range]
holes
, BufSpan -> Maybe BufSpan
forall a. a -> Maybe a
Just ()
)
(GetMetaprograms
-> NormalizedFilePath
-> Action (Maybe [(Tracked 'Current RealSrcSpan, Text)]))
-> Rules BufSpan
forall k v.
IdeRule k v =>
(k -> NormalizedFilePath -> Action (Maybe v)) -> Rules BufSpan
defineNoDiagnostics ((GetMetaprograms
-> NormalizedFilePath
-> Action (Maybe [(Tracked 'Current RealSrcSpan, Text)]))
-> Rules BufSpan)
-> (GetMetaprograms
-> NormalizedFilePath
-> Action (Maybe [(Tracked 'Current RealSrcSpan, Text)]))
-> Rules BufSpan
forall a b. (a -> b) -> a -> b
$ \GetMetaprograms
GetMetaprograms NormalizedFilePath
nfp -> do
TrackedStale Tracked ('Stale s) TcGblEnv
tcg PositionMap ('Stale s) 'Current
tcg_map <- (TcModuleResult -> TcGblEnv)
-> TrackedStale TcModuleResult -> TrackedStale TcGblEnv
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap TcModuleResult -> TcGblEnv
tmrTypechecked (TrackedStale TcModuleResult -> TrackedStale TcGblEnv)
-> Action (TrackedStale TcModuleResult)
-> Action (TrackedStale TcGblEnv)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> TypeCheck
-> NormalizedFilePath -> Action (TrackedStale TcModuleResult)
forall k v.
IdeRule k v =>
k -> NormalizedFilePath -> Action (TrackedStale v)
useWithStale_ TypeCheck
TypeCheck NormalizedFilePath
nfp
let scrutinees :: [Tracked ('Stale s) (SrcSpan, Text)]
scrutinees = (TcGblEnv -> [(SrcSpan, Text)])
-> Tracked ('Stale s) TcGblEnv
-> [Tracked ('Stale s) (SrcSpan, Text)]
forall (t :: * -> *) (f :: * -> *) a b.
(Traversable t, Applicative f) =>
(a -> f b) -> t a -> f (t b)
traverse (LHsBinds GhcTc -> [(SrcSpan, Text)]
GenericQ [(SrcSpan, Text)]
metaprogramQ (LHsBinds GhcTc -> [(SrcSpan, Text)])
-> (TcGblEnv -> LHsBinds GhcTc) -> TcGblEnv -> [(SrcSpan, Text)]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. TcGblEnv -> LHsBinds GhcTc
tcg_binds) Tracked ('Stale s) TcGblEnv
tcg
Maybe [(Tracked 'Current RealSrcSpan, Text)]
-> Action (Maybe [(Tracked 'Current RealSrcSpan, Text)])
forall (m :: * -> *) a. Monad m => a -> m a
return (Maybe [(Tracked 'Current RealSrcSpan, Text)]
-> Action (Maybe [(Tracked 'Current RealSrcSpan, Text)]))
-> Maybe [(Tracked 'Current RealSrcSpan, Text)]
-> Action (Maybe [(Tracked 'Current RealSrcSpan, Text)])
forall a b. (a -> b) -> a -> b
$ [(Tracked 'Current RealSrcSpan, Text)]
-> Maybe [(Tracked 'Current RealSrcSpan, Text)]
forall a. a -> Maybe a
Just ([(Tracked 'Current RealSrcSpan, Text)]
-> Maybe [(Tracked 'Current RealSrcSpan, Text)])
-> [(Tracked 'Current RealSrcSpan, Text)]
-> Maybe [(Tracked 'Current RealSrcSpan, Text)]
forall a b. (a -> b) -> a -> b
$ ((Tracked ('Stale s) (SrcSpan, Text)
-> Maybe (Tracked 'Current RealSrcSpan, Text))
-> [Tracked ('Stale s) (SrcSpan, Text)]
-> [(Tracked 'Current RealSrcSpan, Text)])
-> [Tracked ('Stale s) (SrcSpan, Text)]
-> (Tracked ('Stale s) (SrcSpan, Text)
-> Maybe (Tracked 'Current RealSrcSpan, Text))
-> [(Tracked 'Current RealSrcSpan, Text)]
forall a b c. (a -> b -> c) -> b -> a -> c
flip (Tracked ('Stale s) (SrcSpan, Text)
-> Maybe (Tracked 'Current RealSrcSpan, Text))
-> [Tracked ('Stale s) (SrcSpan, Text)]
-> [(Tracked 'Current RealSrcSpan, Text)]
forall a b. (a -> Maybe b) -> [a] -> [b]
mapMaybe [Tracked ('Stale s) (SrcSpan, Text)]
scrutinees ((Tracked ('Stale s) (SrcSpan, Text)
-> Maybe (Tracked 'Current RealSrcSpan, Text))
-> [(Tracked 'Current RealSrcSpan, Text)])
-> (Tracked ('Stale s) (SrcSpan, Text)
-> Maybe (Tracked 'Current RealSrcSpan, Text))
-> [(Tracked 'Current RealSrcSpan, Text)]
forall a b. (a -> b) -> a -> b
$ \aged :: Tracked ('Stale s) (SrcSpan, Text)
aged@(Tracked ('Stale s) (SrcSpan, Text) -> (SrcSpan, Text)
forall (age :: Age) a. Tracked age a -> a
unTrack -> (SrcSpan
ss, Text
program)) -> do
case SrcSpan
ss of
RealSrcSpan RealSrcSpan
r Maybe BufSpan
_ -> do
Tracked 'Current RealSrcSpan
rss' <- PositionMap ('Stale s) 'Current
-> Tracked ('Stale s) RealSrcSpan
-> Maybe (Tracked 'Current RealSrcSpan)
forall a (from :: Age) (to :: Age).
MapAge a =>
PositionMap from to -> Tracked from a -> Maybe (Tracked to a)
mapAgeTo PositionMap ('Stale s) 'Current
tcg_map (Tracked ('Stale s) RealSrcSpan
-> Maybe (Tracked 'Current RealSrcSpan))
-> Tracked ('Stale s) RealSrcSpan
-> Maybe (Tracked 'Current RealSrcSpan)
forall a b. (a -> b) -> a -> b
$ Tracked ('Stale s) (SrcSpan, Text)
-> RealSrcSpan -> Tracked ('Stale s) RealSrcSpan
forall (age :: Age) a b. Tracked age a -> b -> Tracked age b
unsafeCopyAge Tracked ('Stale s) (SrcSpan, Text)
aged RealSrcSpan
r
(Tracked 'Current RealSrcSpan, Text)
-> Maybe (Tracked 'Current RealSrcSpan, Text)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Tracked 'Current RealSrcSpan
rss', Text
program)
UnhelpfulSpan FastString
_ -> Maybe (Tracked 'Current RealSrcSpan, Text)
forall a. Maybe a
Nothing
GetMetaprograms
-> (NormalizedFilePath
-> IdeAction
(Maybe
([(Tracked 'Current RealSrcSpan, Text)], PositionDelta,
TextDocumentVersion)))
-> Rules BufSpan
forall k v.
IdeRule k v =>
k
-> (NormalizedFilePath
-> IdeAction (Maybe (v, PositionDelta, TextDocumentVersion)))
-> Rules BufSpan
addPersistentRule GetMetaprograms
GetMetaprograms ((NormalizedFilePath
-> IdeAction
(Maybe
([(Tracked 'Current RealSrcSpan, Text)], PositionDelta,
TextDocumentVersion)))
-> Rules BufSpan)
-> (NormalizedFilePath
-> IdeAction
(Maybe
([(Tracked 'Current RealSrcSpan, Text)], PositionDelta,
TextDocumentVersion)))
-> Rules BufSpan
forall a b. (a -> b) -> a -> b
$ \NormalizedFilePath
_ -> Maybe
([(Tracked 'Current RealSrcSpan, Text)], PositionDelta,
TextDocumentVersion)
-> IdeAction
(Maybe
([(Tracked 'Current RealSrcSpan, Text)], PositionDelta,
TextDocumentVersion))
forall (m :: * -> *) a. Monad m => a -> m a
return (Maybe
([(Tracked 'Current RealSrcSpan, Text)], PositionDelta,
TextDocumentVersion)
-> IdeAction
(Maybe
([(Tracked 'Current RealSrcSpan, Text)], PositionDelta,
TextDocumentVersion)))
-> Maybe
([(Tracked 'Current RealSrcSpan, Text)], PositionDelta,
TextDocumentVersion)
-> IdeAction
(Maybe
([(Tracked 'Current RealSrcSpan, Text)], PositionDelta,
TextDocumentVersion))
forall a b. (a -> b) -> a -> b
$ ([(Tracked 'Current RealSrcSpan, Text)], PositionDelta,
TextDocumentVersion)
-> Maybe
([(Tracked 'Current RealSrcSpan, Text)], PositionDelta,
TextDocumentVersion)
forall a. a -> Maybe a
Just ([], PositionDelta
idDelta, TextDocumentVersion
forall a. Maybe a
Nothing)
Action BufSpan -> Rules BufSpan
forall a. Action a -> Rules BufSpan
action (Action BufSpan -> Rules BufSpan)
-> Action BufSpan -> Rules BufSpan
forall a b. (a -> b) -> a -> b
$ do
HashMap NormalizedFilePath FileOfInterestStatus
files <- Action (HashMap NormalizedFilePath FileOfInterestStatus)
getFilesOfInterestUntracked
Action [Maybe BufSpan] -> Action BufSpan
forall (f :: * -> *) a. Functor f => f a -> f BufSpan
void (Action [Maybe BufSpan] -> Action BufSpan)
-> Action [Maybe BufSpan] -> Action BufSpan
forall a b. (a -> b) -> a -> b
$ WriteDiagnostics -> [NormalizedFilePath] -> Action [Maybe BufSpan]
forall k v.
IdeRule k v =>
k -> [NormalizedFilePath] -> Action [Maybe v]
uses WriteDiagnostics
WriteDiagnostics ([NormalizedFilePath] -> Action [Maybe BufSpan])
-> [NormalizedFilePath] -> Action [Maybe BufSpan]
forall a b. (a -> b) -> a -> b
$ HashMap NormalizedFilePath FileOfInterestStatus
-> [NormalizedFilePath]
forall k v. HashMap k v -> [k]
Map.keys HashMap NormalizedFilePath FileOfInterestStatus
files
mkDiagnostic :: DiagnosticSeverity -> Range -> Diagnostic
mkDiagnostic :: DiagnosticSeverity -> Range -> Diagnostic
mkDiagnostic DiagnosticSeverity
severity Range
r =
Range
-> Maybe DiagnosticSeverity
-> Maybe (Int32 |? Text)
-> Maybe Text
-> Text
-> Maybe (List DiagnosticTag)
-> Maybe (List DiagnosticRelatedInformation)
-> Diagnostic
Diagnostic Range
r
(DiagnosticSeverity -> Maybe DiagnosticSeverity
forall a. a -> Maybe a
Just DiagnosticSeverity
severity)
((Int32 |? Text) -> Maybe (Int32 |? Text)
forall a. a -> Maybe a
Just ((Int32 |? Text) -> Maybe (Int32 |? Text))
-> (Int32 |? Text) -> Maybe (Int32 |? Text)
forall a b. (a -> b) -> a -> b
$ Text -> Int32 |? Text
forall a b. b -> a |? b
InR Text
"hole")
(Text -> Maybe Text
forall a. a -> Maybe a
Just Text
"wingman")
Text
"Hole"
(List DiagnosticTag -> Maybe (List DiagnosticTag)
forall a. a -> Maybe a
Just (List DiagnosticTag -> Maybe (List DiagnosticTag))
-> List DiagnosticTag -> Maybe (List DiagnosticTag)
forall a b. (a -> b) -> a -> b
$ [DiagnosticTag] -> List DiagnosticTag
forall a. [a] -> List a
List [DiagnosticTag
DtUnnecessary])
Maybe (List DiagnosticRelatedInformation)
forall a. Maybe a
Nothing
mkWorkspaceEdits
:: DynFlags
-> ClientCapabilities
-> Uri
-> Annotated ParsedSource
-> Graft (Either String) ParsedSource
-> Either UserFacingMessage WorkspaceEdit
mkWorkspaceEdits :: DynFlags
-> ClientCapabilities
-> Uri
-> Annotated ParsedSource
-> Graft (Either String) ParsedSource
-> Either UserFacingMessage WorkspaceEdit
mkWorkspaceEdits DynFlags
dflags ClientCapabilities
ccs Uri
uri Annotated ParsedSource
pm Graft (Either String) ParsedSource
g = do
let pm' :: Annotated ParsedSource
pm' = Identity (Annotated ParsedSource) -> Annotated ParsedSource
forall a. Identity a -> a
runIdentity (Identity (Annotated ParsedSource) -> Annotated ParsedSource)
-> Identity (Annotated ParsedSource) -> Annotated ParsedSource
forall a b. (a -> b) -> a -> b
$ Annotated ParsedSource
-> (ParsedSource -> TransformT Identity ParsedSource)
-> Identity (Annotated ParsedSource)
forall (m :: * -> *) ast1 ast2.
Monad m =>
Annotated ast1 -> (ast1 -> TransformT m ast2) -> m (Annotated ast2)
transformA Annotated ParsedSource
pm ParsedSource -> TransformT Identity ParsedSource
forall a. Data a => a -> Transform a
annotateMetaprograms
let response :: Either String WorkspaceEdit
response = DynFlags
-> ClientCapabilities
-> Uri
-> Graft (Either String) ParsedSource
-> Annotated ParsedSource
-> Either String WorkspaceEdit
transform DynFlags
dflags ClientCapabilities
ccs Uri
uri Graft (Either String) ParsedSource
g Annotated ParsedSource
pm'
in (String -> UserFacingMessage)
-> Either String WorkspaceEdit
-> Either UserFacingMessage WorkspaceEdit
forall (p :: * -> * -> *) a b c.
Bifunctor p =>
(a -> b) -> p a c -> p b c
first (Text -> UserFacingMessage
InfrastructureError (Text -> UserFacingMessage)
-> (String -> Text) -> String -> UserFacingMessage
forall b c a. (b -> c) -> (a -> b) -> a -> c
. String -> Text
T.pack) Either String WorkspaceEdit
response
annotateMetaprograms :: Data a => a -> Transform a
annotateMetaprograms :: a -> Transform a
annotateMetaprograms = (forall a. Data a => a -> Transform a)
-> forall a. Data a => a -> Transform a
forall (m :: * -> *). Monad m => GenericM m -> GenericM m
everywhereM ((forall a. Data a => a -> Transform a)
-> forall a. Data a => a -> Transform a)
-> (forall a. Data a => a -> Transform a)
-> forall a. Data a => a -> Transform a
forall a b. (a -> b) -> a -> b
$ (GenLocated SrcSpan (HsExpr GhcPs)
-> TransformT Identity (GenLocated SrcSpan (HsExpr GhcPs)))
-> a -> TransformT Identity a
forall (m :: * -> *) a b.
(Monad m, Typeable a, Typeable b) =>
(b -> m b) -> a -> m a
mkM ((GenLocated SrcSpan (HsExpr GhcPs)
-> TransformT Identity (GenLocated SrcSpan (HsExpr GhcPs)))
-> a -> TransformT Identity a)
-> (GenLocated SrcSpan (HsExpr GhcPs)
-> TransformT Identity (GenLocated SrcSpan (HsExpr GhcPs)))
-> a
-> TransformT Identity a
forall a b. (a -> b) -> a -> b
$ \case
L SrcSpan
ss (WingmanMetaprogram FastString
mp) -> do
let x :: GenLocated SrcSpan (HsExpr GhcPs)
x = SrcSpan -> HsExpr GhcPs -> GenLocated SrcSpan (HsExpr GhcPs)
forall l e. l -> e -> GenLocated l e
L SrcSpan
ss (HsExpr GhcPs -> GenLocated SrcSpan (HsExpr GhcPs))
-> HsExpr GhcPs -> GenLocated SrcSpan (HsExpr GhcPs)
forall a b. (a -> b) -> a -> b
$ FastString -> HsExpr GhcPs
MetaprogramSyntax FastString
mp
let anns :: Anns
anns = [Comment] -> GenLocated SrcSpan (HsExpr GhcPs) -> Anns -> Anns
forall a. Annotate a => [Comment] -> Located a -> Anns -> Anns
addAnnotationsForPretty [] GenLocated SrcSpan (HsExpr GhcPs)
x Anns
forall a. Monoid a => a
mempty
(Anns -> Anns) -> TransformT Identity BufSpan
forall (m :: * -> *).
Monad m =>
(Anns -> Anns) -> TransformT m BufSpan
modifyAnnsT ((Anns -> Anns) -> TransformT Identity BufSpan)
-> (Anns -> Anns) -> TransformT Identity BufSpan
forall a b. (a -> b) -> a -> b
$ Anns -> Anns -> Anns
forall a. Monoid a => a -> a -> a
mappend Anns
anns
GenLocated SrcSpan (HsExpr GhcPs)
-> TransformT Identity (GenLocated SrcSpan (HsExpr GhcPs))
forall (f :: * -> *) a. Applicative f => a -> f a
pure GenLocated SrcSpan (HsExpr GhcPs)
x
(GenLocated SrcSpan (HsExpr GhcPs)
x :: LHsExpr GhcPs) -> GenLocated SrcSpan (HsExpr GhcPs)
-> TransformT Identity (GenLocated SrcSpan (HsExpr GhcPs))
forall (f :: * -> *) a. Applicative f => a -> f a
pure GenLocated SrcSpan (HsExpr GhcPs)
x
getMetaprogramAtSpan
:: Tracked age SrcSpan
-> Tracked age TcGblEnv
-> Maybe T.Text
getMetaprogramAtSpan :: Tracked age SrcSpan -> Tracked age TcGblEnv -> Maybe Text
getMetaprogramAtSpan (Tracked age SrcSpan -> SrcSpan
forall (age :: Age) a. Tracked age a -> a
unTrack -> SrcSpan
ss)
= ((SrcSpan, Text) -> Text) -> Maybe (SrcSpan, Text) -> Maybe Text
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap (SrcSpan, Text) -> Text
forall a b. (a, b) -> b
snd
(Maybe (SrcSpan, Text) -> Maybe Text)
-> (Tracked age TcGblEnv -> Maybe (SrcSpan, Text))
-> Tracked age TcGblEnv
-> Maybe Text
forall b c a. (b -> c) -> (a -> b) -> a -> c
. [(SrcSpan, Text)] -> Maybe (SrcSpan, Text)
forall a. [a] -> Maybe a
listToMaybe
([(SrcSpan, Text)] -> Maybe (SrcSpan, Text))
-> (Tracked age TcGblEnv -> [(SrcSpan, Text)])
-> Tracked age TcGblEnv
-> Maybe (SrcSpan, Text)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. SrcSpan -> GenericQ [(SrcSpan, Text)]
metaprogramAtQ SrcSpan
ss
(LHsBinds GhcTc -> [(SrcSpan, Text)])
-> (Tracked age TcGblEnv -> LHsBinds GhcTc)
-> Tracked age TcGblEnv
-> [(SrcSpan, Text)]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. TcGblEnv -> LHsBinds GhcTc
tcg_binds
(TcGblEnv -> LHsBinds GhcTc)
-> (Tracked age TcGblEnv -> TcGblEnv)
-> Tracked age TcGblEnv
-> LHsBinds GhcTc
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Tracked age TcGblEnv -> TcGblEnv
forall (age :: Age) a. Tracked age a -> a
unTrack