@@ -67,6 +67,7 @@ public void Should_Not_Throw_Given_Another_Descriptor()
67
67
typeof ( CodeLensParams ) ,
68
68
null ,
69
69
null ,
70
+ false ,
70
71
null ,
71
72
( ) => { } ) ;
72
73
var handlerMatcher = new ResolveCommandPipeline < CodeLensParams , CodeLensContainer > (
@@ -100,6 +101,7 @@ public void Should_Return_CodeLensResolve_Descriptor()
100
101
typeof ( CodeLens ) ,
101
102
null ,
102
103
null ,
104
+ false ,
103
105
null ,
104
106
( ) => { } ) ,
105
107
new HandlerDescriptor ( DocumentNames . CodeLensResolve ,
@@ -109,6 +111,7 @@ public void Should_Return_CodeLensResolve_Descriptor()
109
111
typeof ( CodeLens ) ,
110
112
null ,
111
113
null ,
114
+ false ,
112
115
null ,
113
116
( ) => { } ) ,
114
117
} )
@@ -137,6 +140,7 @@ public void Should_Handle_Null_Data()
137
140
typeof ( CompletionItem ) ,
138
141
null ,
139
142
null ,
143
+ false ,
140
144
null ,
141
145
( ) => { } ) ,
142
146
} )
@@ -167,6 +171,7 @@ public void Should_Handle_Simple_Json_Data()
167
171
typeof ( CompletionItem ) ,
168
172
null ,
169
173
null ,
174
+ false ,
170
175
null ,
171
176
( ) => { } ) ,
172
177
} )
@@ -199,6 +204,7 @@ public void Should_Return_CompletionResolve_Descriptor()
199
204
typeof ( CompletionItem ) ,
200
205
null ,
201
206
null ,
207
+ false ,
202
208
null ,
203
209
( ) => { } ) ,
204
210
new HandlerDescriptor ( DocumentNames . CompletionResolve ,
@@ -208,6 +214,7 @@ public void Should_Return_CompletionResolve_Descriptor()
208
214
typeof ( CompletionItem ) ,
209
215
null ,
210
216
null ,
217
+ false ,
211
218
null ,
212
219
( ) => { } ) ,
213
220
} )
@@ -247,6 +254,7 @@ public void Should_Deal_WithHandlers_That_Not_Also_Resolvers()
247
254
typeof ( CompletionItem ) ,
248
255
null ,
249
256
null ,
257
+ false ,
250
258
null ,
251
259
( ) => { } ) ,
252
260
new HandlerDescriptor ( DocumentNames . CompletionResolve ,
@@ -256,6 +264,7 @@ public void Should_Deal_WithHandlers_That_Not_Also_Resolvers()
256
264
typeof ( CompletionItem ) ,
257
265
null ,
258
266
null ,
267
+ false ,
259
268
null ,
260
269
( ) => { } ) ,
261
270
} )
@@ -291,6 +300,7 @@ public void Should_Deal_WithHandlers_That_Not_Also_Resolvers2()
291
300
typeof ( CompletionItem ) ,
292
301
null ,
293
302
null ,
303
+ false ,
294
304
null ,
295
305
( ) => { } ) ,
296
306
new HandlerDescriptor ( DocumentNames . CompletionResolve ,
@@ -300,6 +310,7 @@ public void Should_Deal_WithHandlers_That_Not_Also_Resolvers2()
300
310
typeof ( CompletionItem ) ,
301
311
null ,
302
312
null ,
313
+ false ,
303
314
null ,
304
315
( ) => { } ) ,
305
316
} )
@@ -327,6 +338,7 @@ public async Task Should_Update_CompletionItems_With_HandlerType()
327
338
typeof ( CompletionParams ) ,
328
339
null ,
329
340
null ,
341
+ false ,
330
342
null ,
331
343
( ) => { } ) ;
332
344
var handlerMatcher = new ResolveCommandPipeline < CompletionParams , CompletionList > (
@@ -369,6 +381,7 @@ public async Task Should_Update_CodeLensContainer_With_HandlerType()
369
381
typeof ( CodeLensParams ) ,
370
382
null ,
371
383
null ,
384
+ false ,
372
385
null ,
373
386
( ) => { } ) ;
374
387
var handlerMatcher = new ResolveCommandPipeline < CodeLensParams , CodeLensContainer > (
@@ -411,6 +424,7 @@ public async Task Should_Update_CodeLens_Removing_HandlerType()
411
424
typeof ( CodeLens ) ,
412
425
null ,
413
426
null ,
427
+ false ,
414
428
null ,
415
429
( ) => { } ) ;
416
430
var handlerMatcher = new ResolveCommandPipeline < CodeLens , CodeLens > (
0 commit comments