Skip to content

Commit 0ed72cb

Browse files
committed
Fix ErrorDictionary reference in DAP macro
1 parent a32ee0a commit 0ed72cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/debug_adapter/lib/debug_adapter/protocol.basic.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ defmodule ElixirLS.DebugAdapter.Protocol.Basic do
6161
message_value = Macro.expand_once(message, __CALLER__)
6262
error_id =
6363
case message_value do
64-
value when is_binary(value) -> ErrorDictionary.code(value)
65-
_ -> quote(do: ErrorDictionary.code(unquote(message)))
64+
value when is_binary(value) -> ElixirLS.DebugAdapter.ErrorDictionary.code(value)
65+
_ -> quote(do: ElixirLS.DebugAdapter.ErrorDictionary.code(unquote(message)))
6666
end
6767

6868
quote do

0 commit comments

Comments
 (0)