@@ -894,15 +894,15 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
894
894
children: [ ] ,
895
895
kind: 7 ,
896
896
name: "prop" ,
897
- range: range ( 1 , 2 , 1 , 39 ) ,
898
- selection_range: range ( 1 , 2 , 1 , 39 )
897
+ range: range ( 1 , 2 , 1 , _ ) ,
898
+ selection_range: range ( 1 , 2 , 1 , _ )
899
899
} ,
900
900
% GenLSP.Structures.DocumentSymbol {
901
901
children: [ ] ,
902
902
kind: 7 ,
903
903
name: "prop_with_def" ,
904
- range: range ( 1 , 2 , 1 , 39 ) ,
905
- selection_range: range ( 1 , 2 , 1 , 39 )
904
+ range: range ( 1 , 2 , 1 , _ ) ,
905
+ selection_range: range ( 1 , 2 , 1 , _ )
906
906
}
907
907
] ,
908
908
kind: 23 ,
@@ -946,15 +946,15 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
946
946
name: "prop" ,
947
947
kind: 7 ,
948
948
location: % GenLSP.Structures.Location {
949
- range: range ( 1 , 2 , 1 , 39 )
949
+ range: range ( 1 , 2 , 1 , _ )
950
950
} ,
951
951
container_name: "defstruct MyModule"
952
952
} ,
953
953
% GenLSP.Structures.SymbolInformation {
954
954
kind: 7 ,
955
955
name: "prop_with_def" ,
956
956
location: % GenLSP.Structures.Location {
957
- range: range ( 1 , 2 , 1 , 39 )
957
+ range: range ( 1 , 2 , 1 , _ )
958
958
} ,
959
959
container_name: "defstruct MyModule"
960
960
}
@@ -982,8 +982,8 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
982
982
children: [ ] ,
983
983
kind: 7 ,
984
984
name: "message" ,
985
- range: range ( 1 , 2 , 1 , 25 ) ,
986
- selection_range: range ( 1 , 2 , 1 , 25 )
985
+ range: range ( 1 , 2 , 1 , _ ) ,
986
+ selection_range: range ( 1 , 2 , 1 , _ )
987
987
}
988
988
] ,
989
989
kind: 23 ,
@@ -1027,7 +1027,7 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
1027
1027
kind: 7 ,
1028
1028
name: "message" ,
1029
1029
location: % GenLSP.Structures.Location {
1030
- range: range ( 1 , 2 , 1 , 25 )
1030
+ range: range ( 1 , 2 , 1 , _ )
1031
1031
} ,
1032
1032
container_name: "defexception MyError"
1033
1033
}
@@ -1837,8 +1837,8 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
1837
1837
kind: 12 ,
1838
1838
name: "\" some description\" " ,
1839
1839
detail: "describe" ,
1840
- range: range ( 3 , 8 , 5 , 11 ) ,
1841
- selection_range: range ( 3 , 8 , 5 , 11 )
1840
+ range: range ( 3 , 8 , 5 , _ ) ,
1841
+ selection_range: range ( 3 , 8 , 5 , _ )
1842
1842
}
1843
1843
] ,
1844
1844
kind: 2 ,
@@ -1870,8 +1870,8 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
1870
1870
children: [ ] ,
1871
1871
kind: 12 ,
1872
1872
name: "\" does\" <> \" something\" " ,
1873
- range: range ( 4 , 10 , 4 , 45 ) ,
1874
- selection_range: range ( 4 , 10 , 4 , 45 )
1873
+ range: range ( 4 , 10 , 4 , _ ) ,
1874
+ selection_range: range ( 4 , 10 , 4 , _ )
1875
1875
}
1876
1876
] ,
1877
1877
kind: 12 ,
@@ -1922,7 +1922,7 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
1922
1922
name: "\" does something\" " ,
1923
1923
kind: 12 ,
1924
1924
location: % GenLSP.Structures.Location {
1925
- range: range ( 4 , 10 , 4 , 40 )
1925
+ range: range ( 4 , 10 , 4 , _ )
1926
1926
} ,
1927
1927
container_name: "\" some description\" "
1928
1928
}
@@ -1963,7 +1963,7 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
1963
1963
name: "\" does\" <> \" something\" " ,
1964
1964
kind: 12 ,
1965
1965
location: % GenLSP.Structures.Location {
1966
- range: range ( 4 , 10 , 4 , 45 )
1966
+ range: range ( 4 , 10 , 4 , _ )
1967
1967
} ,
1968
1968
container_name: describe_sigil
1969
1969
}
@@ -2122,8 +2122,8 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
2122
2122
children: [ ] ,
2123
2123
kind: 20 ,
2124
2124
name: "config :my_app MyApp.Repo" ,
2125
- range: range ( 9 , 0 , 11 , 22 ) ,
2126
- selection_range: range ( 9 , 0 , 11 , 22 )
2125
+ range: range ( 9 , 0 , _ , _ ) ,
2126
+ selection_range: range ( 9 , 0 , _ , _ )
2127
2127
}
2128
2128
] } = get_document_symbols ( uri , parser_context , true )
2129
2129
end
@@ -2174,7 +2174,7 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
2174
2174
name: "config :my_app MyApp.Repo" ,
2175
2175
kind: 20 ,
2176
2176
location: % GenLSP.Structures.Location {
2177
- range: range ( 9 , 0 , 11 , 22 )
2177
+ range: range ( 9 , 0 , _ , _ )
2178
2178
}
2179
2179
}
2180
2180
] } = get_document_symbols ( uri , parser_context , false )
0 commit comments