Skip to content

Commit

Permalink
Update Ghcide submodule
Browse files Browse the repository at this point in the history
Now consistent with a970f9d, upon which we rebased.
  • Loading branch information
georgefst committed Jun 23, 2020
1 parent 0fa07ae commit 7853251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ghcide
Submodule ghcide updated 79 files
+6 −2 .azure/linux-stack.yml
+1 −0 .azure/windows-stack.yml
+25 −0 .ghci
+0 −53 .github/workflows/build.yaml
+6 −0 .gitignore
+1 −1 .hlint.yaml
+20 −0 CHANGELOG.md
+43 −2 README.md
+472 −0 bench/Hist/Main.hs
+416 −0 bench/Main.hs
+14 −0 bench/README.md
+42 −0 bench/hist.yaml
+0 −5 cabal.project
+431 −311 exe/Main.hs
+1 −1 exe/Utils.hs
+89 −9 ghcide.cabal
+19 −9 hie.yaml
+20 −0 hie.yaml.cbl
+20 −0 hie.yaml.stack
+1 −2 src-ghc810/Development/IDE/GHC/HieAst.hs
+6 −1 src-ghc810/Development/IDE/GHC/HieBin.hs
+6 −1 src-ghc86/Development/IDE/GHC/HieBin.hs
+6 −1 src-ghc88/Development/IDE/GHC/HieBin.hs
+44 −41 src/Development/IDE/Core/Compile.hs
+15 −11 src/Development/IDE/Core/FileExists.hs
+21 −10 src/Development/IDE/Core/FileStore.hs
+12 −4 src/Development/IDE/Core/OfInterest.hs
+2 −2 src/Development/IDE/Core/PositionMapping.hs
+26 −22 src/Development/IDE/Core/RuleTypes.hs
+225 −186 src/Development/IDE/Core/Rules.hs
+16 −23 src/Development/IDE/Core/Service.hs
+393 −373 src/Development/IDE/Core/Shake.hs
+21 −9 src/Development/IDE/GHC/Compat.hs
+2 −22 src/Development/IDE/GHC/Error.hs
+9 −2 src/Development/IDE/GHC/Orphans.hs
+3 −22 src/Development/IDE/GHC/Util.hs
+1 −2 src/Development/IDE/Import/DependencyInformation.hs
+4 −4 src/Development/IDE/Import/FindImports.hs
+5 −6 src/Development/IDE/LSP/HoverDefinition.hs
+4 −1 src/Development/IDE/LSP/LanguageServer.hs
+1 −1 src/Development/IDE/LSP/Notifications.hs
+13 −1 src/Development/IDE/LSP/Outline.hs
+6 −4 src/Development/IDE/Plugin/CodeAction.hs
+23 −31 src/Development/IDE/Plugin/Completions.hs
+2 −2 src/Development/IDE/Plugin/Completions/Logic.hs
+2 −2 src/Development/IDE/Plugin/Completions/Types.hs
+27 −29 src/Development/IDE/Spans/AtPoint.hs
+38 −27 src/Development/IDE/Spans/Common.hs
+59 −6 src/Development/IDE/Spans/Documentation.hs
+9 −0 src/Development/IDE/Types/Diagnostics.hs
+1 −1 src/Development/IDE/Types/Location.hs
+4 −5 src/Development/IDE/Types/Options.hs
+1 −1 stack-ghc-lib.yaml
+17 −2 stack.yaml
+9 −1 stack810.yaml
+39 −0 stack84.yaml
+0 −21 stack86.yaml
+4 −3 stack88.yaml
+0 −39 test-leak
+0 −3 test/data/Bar.hs
+3 −0 test/data/hover/Bar.hs
+0 −0 test/data/hover/Foo.hs
+1 −1 test/data/hover/GotoHover.hs
+1 −0 test/data/hover/hie.yaml
+3 −0 test/data/multi/a/A.hs
+9 −0 test/data/multi/a/a.cabal
+3 −0 test/data/multi/b/B.hs
+9 −0 test/data/multi/b/b.cabal
+1 −0 test/data/multi/cabal.project
+6 −0 test/data/multi/hie.yaml
+2 −0 test/data/recomp/Setup.hs
+1 −0 test/data/recomp/cabal.project
+1 −0 test/data/recomp/hie.yaml
+6 −0 test/data/recomp/lib/A.hs
+4 −0 test/data/recomp/lib/B.hs
+5 −0 test/data/recomp/lib/P.hs
+13 −0 test/data/recomp/recomp.cabal
+462 −187 test/exe/Main.hs
+15 −24 test/src/Development/IDE/Test.hs

0 comments on commit 7853251

Please sign in to comment.