Skip to content

Commit 0e81997

Browse files
committed
Extended Eval Plugin
1 parent b649b15 commit 0e81997

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

+2992
-580
lines changed

Diff for: haskell-language-server.cabal

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

146162
if flag(agpl)
147163
build-depends: brittany
@@ -229,6 +245,7 @@ test-suite func-test
229245
, tasty-expected-failure
230246
, tasty-golden
231247
, tasty-rerun
248+
, QuickCheck
232249

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

@@ -279,3 +296,7 @@ test-suite wrapper-test
279296
hs-source-dirs: test/wrapper
280297
main-is: Main.hs
281298
ghc-options: -Wall
299+
300+
301+
302+

0 commit comments

Comments
 (0)