Skip to content

Commit 13407bc

Browse files
authored
Bump elixir_sense again (elixir-editors#87)
* Bump elixir_sense again * Adjust private api usage
1 parent b1415ce commit 13407bc

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
- Upgrade ElixirSense (thanks to [Jason Axelson](https://github.com/axelson)) [#82](https://github.com/elixir-lsp/elixir-ls/pull/82)
88
- Update startup message (thanks to [Ahmed Hamdy](https://github.com/shakram02)) [#85](https://github.com/elixir-lsp/elixir-ls/pull/85)
99
- Add didSave to server capabilities (thanks to [Jonáš Trantina](https://github.com/Coffei)) [#86](https://github.com/elixir-lsp/elixir-ls/pull/86)
10+
- Bump ElixirSense
11+
- Main changes: return results by arity, return all type signatures, typespec and dialyzer fixes
1012

1113
### v0.2.28: 16 Nov 2019
1214

apps/language_server/lib/language_server/source_file.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ defmodule ElixirLS.LanguageServer.SourceFile do
115115

116116
def function_line(mod, fun, arity) do
117117
# TODO: Don't call into here directly
118-
case ElixirSense.Core.Introspection.get_docs(mod, :docs) do
118+
case ElixirSense.Core.Normalized.Code.get_docs(mod, :docs) do
119119
nil ->
120120
nil
121121

mix.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%{
22
"dialyxir": {:hex, :dialyxir, "1.0.0-rc.7", "6287f8f2cb45df8584317a4be1075b8c9b8a69de8eeb82b4d9e6c761cf2664cd", [:mix], [{:erlex, ">= 0.2.5", [hex: :erlex, repo: "hexpm", optional: false]}], "hexpm"},
3-
"elixir_sense": {:git, "https://github.com/elixir-lsp/elixir_sense.git", "877fa6f392546bcc037536eb316a13b0388ecb7b", []},
3+
"elixir_sense": {:git, "https://github.com/elixir-lsp/elixir_sense.git", "8fb6d919a01548ecbab5da434ce47812f4785aff", []},
44
"erl2ex": {:git, "https://github.com/dazuma/erl2ex.git", "244c2d9ed5805ef4855a491d8616b8842fef7ca4", []},
55
"erlex": {:hex, :erlex, "0.2.5", "e51132f2f472e13d606d808f0574508eeea2030d487fc002b46ad97e738b0510", [:mix], [], "hexpm"},
66
"forms": {:hex, :forms, "0.0.1", "45f3b10b6f859f95f2c2c1a1de244d63855296d55ed8e93eb0dd116b3e86c4a6", [:rebar3], [], "hexpm"},

0 commit comments

Comments
 (0)