-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump elixir_sense to 1.15 compatible version * update dialyxir to 1.3.0 * Add support for def cli in debugger * fix warnings * pass root option correctly * make sure debug info is preserved * add debugger dep to extra apps I'm not sure this is needed * add todo * temporary workaround for broken logger registrations * add workarounds for prunning code paths * fix typo * add missing app apply change from upstream * make hover work with new elixir_sense version * readd dir param * change dialyzer sha * test valid formatter config * fix infocation * fix test * make sure doc chunks are generated * remove not needed tests * fix test * add logger handler * fix tests * insert needed requires as additional text edits skip completions that would need to alter imports * reinstall log handler after loading config * resolve todo * address todo * fix logger format * run formatter * drop support for elixir 1.12 * remove pre 1.13 code * add missing app * fix function invocation * remove unused code * logger registration in tests * Revert "remove unused code" This reverts commit b0a3bb0. * Revert "remove pre 1.13 code" This partially reverts commit 5164b2b. * port elixir changes related to multiletter sigils * address todo * fix flaky test * fix flaky tests fix logger config reset in build * format * fix crash in completions * fix crash in hover * remove sourceror dependency it proved to be problematic * do not start erlang debugger * add version check * do not call mix local on 1.15 * run formatter
- Loading branch information
1 parent
cb2bbf0
commit bd3d3bb
Showing
44 changed files
with
580 additions
and
364 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.14.6 | ||
0.15.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
Application.put_env(:elixir_ls_debugger, :test_mode, true) | ||
ExUnit.start(exclude: [pending: true]) | ||
|
||
if Version.match?(System.version(), ">= 1.15.0-dev") do | ||
# make sue that debugger modules are in code path | ||
# without starting the app | ||
Mix.ensure_application!(:debugger) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.