File tree 1 file changed +2
-3
lines changed
apps/language_server/lib/language_server/providers/code_lens
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -40,10 +40,10 @@ defmodule DescribeBlock do
40
40
lines_to_env_list
41
41
|> Enum . at ( env_index )
42
42
43
- with true = env_index + 1 < lines_to_env_list_length ,
43
+ with true <- env_index + 1 < lines_to_env_list_length ,
44
44
next_env = Enum . at ( lines_to_env_list , env_index + 1 ) ,
45
45
{ _line , % Env { scope_id: body_scope_id } } <- next_env ,
46
- true = body_scope_id != declaration_scope_id do
46
+ true <- body_scope_id != declaration_scope_id do
47
47
body_scope_id
48
48
else
49
49
_ -> nil
@@ -72,7 +72,6 @@ defmodule ElixirLS.LanguageServer.Providers.CodeLens.Test do
72
72
alias ElixirLS.LanguageServer.SourceFile
73
73
alias ElixirSense.Core.Parser
74
74
alias ElixirSense.Core.Metadata
75
- alias ElixirSense.Core.State.Env
76
75
77
76
@ run_test_command "elixir.lens.test.run"
78
77
You can’t perform that action at this time.
0 commit comments