We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a32ee0a commit 0ed72cbCopy full SHA for 0ed72cb
apps/debug_adapter/lib/debug_adapter/protocol.basic.ex
@@ -61,8 +61,8 @@ defmodule ElixirLS.DebugAdapter.Protocol.Basic do
61
message_value = Macro.expand_once(message, __CALLER__)
62
error_id =
63
case message_value do
64
- value when is_binary(value) -> ErrorDictionary.code(value)
65
- _ -> quote(do: ErrorDictionary.code(unquote(message)))
+ value when is_binary(value) -> ElixirLS.DebugAdapter.ErrorDictionary.code(value)
+ _ -> quote(do: ElixirLS.DebugAdapter.ErrorDictionary.code(unquote(message)))
66
end
67
68
quote do
0 commit comments