We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b911f8e commit 3095662Copy full SHA for 3095662
plugins/hls-tactics-plugin/src/Ide/Plugin/Tactic/Tactics.hs
@@ -12,7 +12,7 @@ module Ide.Plugin.Tactic.Tactics
12
) where
13
14
import Control.Applicative (Alternative(empty))
15
-import Control.Lens ((&), (%~))
+import Control.Lens ((&), (%~), (<>~))
16
import Control.Monad (unless)
17
import Control.Monad.Except (throwError)
18
import Control.Monad.Reader.Class (MonadReader (ask))
@@ -104,6 +104,7 @@ intros = rule $ \jdg -> do
104
ext
105
& #syn_trace %~ rose ("intros {" <> intercalate ", " (fmap show vs) <> "}")
106
. pure
107
+ & #syn_scoped <>~ hy'
108
& #syn_val %~ noLoc . lambda (fmap bvar' vs) . unLoc
109
110
0 commit comments