Skip to content

Commit 7f134ea

Browse files
authored
fix(definition): variables inside broken code (#496)
Closes #477
1 parent 28d29f6 commit 7f134ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/next_ls/helpers/ast_helpers/variables.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ defmodule NextLS.ASTHelpers.Variables do
219219
end
220220

221221
defp decrease_scope_nesting(acc) do
222-
Map.update!(acc, :scope, &tl(&1))
222+
Map.update!(acc, :scope, &List.delete_at(&1, 0))
223223
end
224224

225225
# add new symbol with scope

0 commit comments

Comments
 (0)