Skip to content

Commit 91a38e6

Browse files
committed
fix another crash on < 1.16
1 parent 6572c64 commit 91a38e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/language_server/lib/language_server/ast_utils.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ defmodule ElixirLS.LanguageServer.AstUtils do
192192
end
193193

194194
match?({:., _meta, [Kernel, :to_string]}, form) ->
195-
if Keyword.get(meta, :from_interpolation) or
195+
if Keyword.get(meta, :from_interpolation) ||
196196
Version.match?(System.version(), "< 1.16.0-dev") do
197197
{line, column}
198198
end

0 commit comments

Comments
 (0)