Skip to content

Commit 746c848

Browse files
committed
Extended Eval Plugin (rebased to 0.7)
1 parent 6a692de commit 746c848

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+2990
-579
lines changed

Diff for: haskell-language-server.cabal

+21
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,16 @@ executable haskell-language-server
8383
hs-source-dirs: exe plugins/default/src
8484
other-modules:
8585
Ide.Plugin.Eval
86+
Ide.Plugin.Eval.Code
87+
Ide.Plugin.Eval.CodeLens
88+
Ide.Plugin.Eval.GHC
89+
Ide.Plugin.Eval.Parse.Option
90+
Ide.Plugin.Eval.Parse.Parser
91+
Ide.Plugin.Eval.Parse.Section
92+
Ide.Plugin.Eval.Parse.Token
93+
Ide.Plugin.Eval.Tutorial
94+
Ide.Plugin.Eval.Types
95+
Ide.Plugin.Eval.Util
8696
Ide.Plugin.Example
8797
Ide.Plugin.Example2
8898
Ide.Plugin.Floskell
@@ -141,6 +151,12 @@ executable haskell-language-server
141151
, time
142152
, transformers
143153
, unordered-containers
154+
, parser-combinators
155+
, pretty-simple
156+
, Diff
157+
, QuickCheck
158+
, ghc-paths
159+
144160

145161
if flag(agpl)
146162
build-depends: brittany >= 0.13.1.0
@@ -230,6 +246,7 @@ test-suite func-test
230246
, tasty-expected-failure
231247
, tasty-golden
232248
, tasty-rerun
249+
, QuickCheck
233250

234251
hs-source-dirs: test/functional plugins/tactics/src
235252

@@ -280,3 +297,7 @@ test-suite wrapper-test
280297
hs-source-dirs: test/wrapper
281298
main-is: Main.hs
282299
ghc-options: -Wall
300+
301+
302+
303+

0 commit comments

Comments
 (0)