hls-splice-plugin 1.0.1.0 → 1.0.2.0
raw patch · 2 files changed
+14/−4 lines, 2 filesdep +hls-refactor-plugindep ~ghcidedep ~hls-plugin-apidep ~hls-test-utilsnew-uploader
Dependencies added: hls-refactor-plugin
Dependency ranges changed: ghcide, hls-plugin-api, hls-test-utils
Files
- hls-splice-plugin.cabal +13/−4
- src/Ide/Plugin/Splice.hs +1/−0
hls-splice-plugin.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: hls-splice-plugin-version: 1.0.1.0+version: 1.0.2.0 synopsis: HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes @@ -23,6 +23,10 @@ test/testdata/*.yaml library+ if impl(ghc >= 9.3)+ buildable: False+ else+ buildable: True exposed-modules: Ide.Plugin.Splice Ide.Plugin.Splice.Types@@ -38,8 +42,9 @@ , foldl , ghc , ghc-exactprint- , ghcide ^>=1.6- , hls-plugin-api ^>=1.3+ , ghcide ^>=1.8+ , hls-plugin-api ^>= 1.5+ , hls-refactor-plugin , lens , lsp , retrie@@ -55,6 +60,10 @@ TypeOperators test-suite tests+ if impl(ghc >= 9.3)+ buildable: False+ else+ buildable: True type: exitcode-stdio-1.0 default-language: Haskell2010 hs-source-dirs: test@@ -64,5 +73,5 @@ , base , filepath , hls-splice-plugin- , hls-test-utils ^>=1.2+ , hls-test-utils ^>= 1.4 , text
src/Ide/Plugin/Splice.hs view
@@ -47,6 +47,7 @@ import qualified Data.Text as T import Development.IDE import Development.IDE.GHC.Compat as Compat hiding (getLoc)+import Development.IDE.GHC.Compat.ExactPrint import qualified Development.IDE.GHC.Compat.Util as Util import Development.IDE.GHC.ExactPrint import GHC.Exts