File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
debug_adapter/lib/debug_adapter Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ defmodule ElixirLS.DebugAdapter.Protocol.Basic do
59
59
show_user
60
60
) do
61
61
message_value = Macro . expand_once ( message , __CALLER__ )
62
+
62
63
error_id =
63
64
case message_value do
64
65
value when is_binary ( value ) -> ElixirLS.DebugAdapter.ErrorDictionary . code ( value )
Original file line number Diff line number Diff line change @@ -142,8 +142,8 @@ defmodule ElixirLS.LanguageServer do
142
142
def check_elixir_sources ( ) do
143
143
enum_ex_path = Enum . module_info ( ) [ :compile ] [ :source ]
144
144
145
+ # handle possible nil from deterministic build of elixir
145
146
elixir_sources_available =
146
- # handle possible nil from deterministic build of elixir
147
147
unless enum_ex_path && File . exists? ( enum_ex_path , [ :raw ] ) do
148
148
dir = ( enum_ex_path || ~c" /" ) |> Path . join ( "../../../.." ) |> Path . expand ( )
149
149
You can’t perform that action at this time.
0 commit comments